body {
    background-color: white;
    font-family: "Avenir Next", Helvetica, sans-serif;
    color: black;
}

#home-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    padding: 30px;
    overflow: hidden;
}

#hero-text-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin-top: 48px;
    width: 100%;
}

#hero-logo-and-title-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    width: 100%;
}

#hero-logo {
    width: 116px;
    height: 116px;
    aspect-ratio: 1/1;
    border-radius: 20%;
    display: block;
}

.hero-title {
    font-weight: 600;
}

#hero-title-desktop {
    font-size: 47px;
    text-align: center;
}

#hero-title-mobile {
    display: none;
}

#hero-description {
    font-size: 22px;
    font-weight: 400;
    text-align: center;
    padding: 0 54px;
    max-width: 895px;
}

#hero-img-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 86px;
}

#hero-img {
    width: 503px;
    height: auto;
    display: block;
    cursor: pointer;
}

.flex-spacer {
    flex-grow: 1;
}

#footer-container {
    position: absolute;
    bottom: 0;
    width: calc(100% - 60px);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    margin-top: 48px;
}

#legal-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#terms-and-privacy,
#terms-and-privacy a,
#terms-and-privacy a:link,
#terms-and-privacy a:visited,
#terms-and-privacy a:hover,
#terms-and-privacy a:active {
    font-size: 15px;
    color: black;
    font-weight: 400;
    text-decoration: none;
}

#terms-and-privacy a:hover {
    text-decoration: underline;
}

#copyright {
    font-size: 15px;
    font-weight: 400;
    text-align: center;
}

#app-store-badge {
    height: 40px;
    width: auto;
    display: block;
    cursor: pointer;
}

@media only screen and (max-width:768px) {
    #home-container {
        height: auto;
        overflow: auto;
        min-height: 100vh;
        padding: 0 0 20px 0;
        align-items: center;
    }

    #hero-text-container {
        gap: 28px;
        width: 320px;
        margin-top: 36px;
    }

    #hero-logo-and-title-container {
        flex-direction: row;
        gap: 21px;
        justify-content: center;
        align-items: center;
        padding: 0 21px;
        width: 100%;
    }

    #hero-logo {
        width: 54px;
        height: 54px;
    }

    #hero-title-mobile {
        display: block;
        font-size: 18px;
        line-height: 127%;
        text-align: start;
    }

    #hero-title-desktop {
        display: none;
    }

    #hero-description {
        font-size: 16px;
        padding: 0;
        max-width: none;
    }

    #hero-img-container {
        margin-top: 28px;
        width: 100%;
        overflow: hidden;
    }

    #footer-container {
        position: relative;
        bottom: auto;
        width: 100%;
        margin-top: 0;
        padding: 0;
        flex-direction: column-reverse;
        gap: 0;
        align-items: center;
    }

    #app-store-badge {
        margin: 28px 0;
    }

    #legal-container {
        flex-direction: row;
        gap: 8px;
        padding: 24px;
        width: 100%;
        justify-content: center;
    }
}