html,
body {
    padding: 0;
    margin: 0;
    background-image: url('./img/mobile/BG-h5.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* font-family: SF Pro, sans-serif; */
    font-family: 'San Francisco UI', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    height: 100vh;
    background-color: #1b0100;
    overflow: hidden;
}

img {
    display: block;
}

.page-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    text-align: center;
    width: 100%;
    max-width: 910px;
    margin: 0 auto;
    position: relative;
    height: 100dvh;
}

/* #responsive-img {
    content: url('img/mobile/main.gif');
} */

.image-container {
    z-index: 3;
    text-align: center;
}

.button-wrapper {
    max-width: 300px;
    width: 95%;
    padding-bottom: 10px;
    z-index: 5;
}

.download-button img {
    width: 100%;
}

.signinup-container {
    margin-top: 10px;
    text-align: center;
    display: flex;
    justify-content: space-evenly;
}

.signinup-container a {
    padding: 10px 0;
    width: 45%;
    border-radius: 2.5rem;
    font-weight: 700;
    cursor: pointer;
}

.signIn {
    background: #ffffff;
    color: #FF0000;
}

.signUp {
    background: linear-gradient(130deg, #FF2700, #FF00BA);
    color: #ffffff;
}

.link {
    text-decoration: none;
}

.mobile-only {
    display: block;
}

.desktop-only {
    display: none;
}

.content-wrapper {
    position: relative;
    width: 100%;
}

.content-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
}

.content-wrapper img:first-child {
    position: relative;
}

@media (max-width: 767px) {

    .page-content {
        justify-content: space-evenly;
    }

    img {
        width: 100%;
    }
}

@media (min-width: 768px) {

    html,
    body {
        background-image: url(./img/BG-web.png);
        overflow-y: auto;
        scrollbar-width: none
    }

    ::-webkit-scrollbar {
        display: none;
    }

    .mobile-only {
        display: none;
    }

    .desktop-only {
        display: block;
        margin: 0 auto;
    }

    /* #responsive-img {
        content: url('img/main-web.gif');
    } */

    .content-wrapper img {
        width: 80%;
        margin: 0 auto;
        padding-right: 2.5rem;
    }

    .title img {
        margin: 0 auto;
        width: 80%;
    }

    .button-wrapper {
        max-width: 450px;
        padding-bottom: 20px;
    }

    .btn {
        width: 195px;
    }

    .signinup-container a {
        padding: 15px 0;
    }

    .signinup-container {
        margin-top: 10px;
        gap: 15px;
        justify-content: center;
    }
}

@media (max-height: 700px) and (min-width: 768px) {
    .content-wrapper {
        max-width: 730px;
    }
}

@media (max-height: 680px) and (min-width: 768px) {
    .content-wrapper {
        max-width: 700px;
    }
}
