@font-face {
    font-family: 'Circular Std 500';
    src: url('../fonts/circular-std-medium-500.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Circular Std 600';
    src: url('../fonts/circular-std-medium-500.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

body {
    color: #ffffff;
    background-color: #0F0F0F;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-family: "Circular Std 500", sans-serif;
}



.container {
    padding: 15px;
    margin: 0 auto;
}

.nav {
    display: flex;
    justify-content: space-between;
    /* Aligns items on both ends */
    align-items: center;
    /* Vertically centers items */
    max-width: 800px;
}


.text {
    font-size: 18px;
    line-height: 27px;
}

.title {
    font-size: 70px;
    line-height: 70px;
    text-align: center;
}



/* Adjust styles for screens up to 600px width (typical mobile devices) */
@media only screen and (max-width: 600px) {
    .container {
        padding: 1px;
        max-width: 95%;
    }


    .title {
        font-size: 44px;
        line-height: 44px;
        text-align: center;
    }
}

/* Adjust styles for screens between 601px and 1200px width (typical tablets and small laptops) */
@media only screen and (min-width: 601px) and (max-width: 1200px) {
    .container {
        max-width: 70%;
    }
}

/* Adjust styles for screens between 1201px and 1920px width (typical laptops and desktops) */
@media only screen and (min-width: 1201px) and (max-width: 1920px) {
    .container {
        max-width: 60%;
    }
}

/* Adjust styles for screens larger than 1920px width (typical 2k monitors and above) */
@media only screen and (min-width: 1921px) {
    .container {
        max-width: 55%;
    }
}


.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border-radius: 30px;
    transition: transform 0.3s ease;
    /* Added transition for smooth scaling */
    color: #000000;
    background-color: #ffffff;
    /* Blue color, change as needed */
}


/* Hover State */
.button:hover {
    transform: scale(1.1);

}