@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@font-face {
    font-family: 'The Youngest Script';
    src: url('./fonts/TYScript-Rg.eot');
    src: url('./fonts/TYScript-Rg.eot');
    src: url('./fonts/TYScript-Rg.eot?#iefix') format('embedded-opentype'),
        url('./fonts/TYScript-Rg.woff2') format('woff2'),
        url('./fonts/TYScript-Rg.woff') format('woff'),
        url('./fonts/TYScript-Rg.ttf') format('truetype'),
        url('./fonts/TYScript-Rg.svg#TYScript-Rg') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    font-weight: normal;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    background-size: cover;
    background-position: center bottom 15%;
    background-repeat: no-repeat;
    color: #FFF;
}

img {
    max-width: 100%;
    display: block;
}

/* Container */
.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 80px 20px ;
    text-align: center;
}

/* Header/Logo */

.logo {
    display: inline-block;
    max-width: 300px;
    width: 100%;
}


/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.coming-soon {
    margin-top: -40px;
}
.coming-soon__title {
    font-family: 'The Youngest Script';
    font-weight: normal;
    font-size: 140px;
    color: #FCF7EC;
    line-height: 1.2;
    margin-bottom: 8px;
    text-transform: capitalize;
}

.coming-soon__subtitle {
    font-size: 24px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    color: #FCF7EC;
}

/* Footer */
footer {
    padding-top: 1.5rem;
}

.footer__copyright {
    font-size: 1rem;
    color: #FCF7EC;
    font-weight: 500;
}

/* Responsive Design */

/* Tablet */
@media screen and (max-width: 1024px) {
    .container {
        padding: 60px 20px;
    }

    .logo {
        max-width: 250px;
    }

    .coming-soon__title {
        font-size: 100px;
        margin-bottom: 0;
    }

    .coming-soon__subtitle {
        font-size: 22px;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .container {
        padding: 50px 20px;
    }

    .logo {
        max-width: 190px;
    }

    .coming-soon__title {
        font-size: 80px;
    }

    .coming-soon__subtitle {
        font-size: 20px;
    }
}

/* Small Mobile */
@media screen and (max-width: 540px) {
    .coming-soon__title {
        font-size: 60px;
    }
}