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

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

.page-header {
    text-align: center;
    padding-top: 5rem;
    margin-bottom: 6rem;
    a {
        text-decoration: none;
        color: black;
        text-transform: lowercase;
        h1 {
            font-size: 1.4rem;
        }
        h2 {
            font-size: 1rem;
            font-weight: normal;
        }
    }
}

.hero {
    text-align: center;
    margin-bottom: 6rem;
    .hero-head {
        font-weight: normal;
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }
    .hero-main {
        font-weight: 900;
        font-size: 6rem;
        margin: 0 auto 5rem auto;
        max-width: 65%;
    }
    .hero-foot {
        font-weight: normal;
        font-size: 1.4rem;
        margin: 0 auto;
        max-width: 30%;
        line-height: 2.4rem;
    }
}

.func-example {
    text-align: center;
    margin-bottom: 6rem;
    padding: 0 2rem;
}

.home-cta {
    text-align: center;
    margin-bottom: 6rem;
}

.home-footer {
    margin-bottom: 12rem;
    text-align: center;
    h4 {
        text-align: center;
        font-size: 1.8rem;
        font-weight: normal;
        max-width: 40%;
        margin: 0 auto 8rem auto;
        line-height: 3rem;
    }
    .terms-link {
        font-size: 0.8rem;
        color: black;
        text-decoration: underline;
    }
}

.button {
    display: inline-block;
    outline: none;
    cursor: pointer;
    font-size: 1.3rem;
    line-height: 2.4rem;
    font-weight: bold;
    border-radius: 8px;
    padding: 13px 40px;
    border: 1px solid #222222;
    transition: box-shadow 0.2s ease 0s, -ms-transform 0.1s ease 0s, -webkit-transform 0.1s ease 0s, transform 0.1s ease 0s;
    background: #fff;
    color: #222222;
    text-decoration: none;
    :hover {
        border-color: #000000;
        background: #f7f7f7;
    }
}

@media only screen and (max-width: 600px) {
    .page-header {
        padding-top: 2rem;
        margin-bottom: 3rem;
    }
    .hero {
        margin-bottom: 2rem;
        .hero-head {
            font-size: 1rem;
        }
        .hero-main {
            max-width: 90%;
            font-size: 2rem;
            margin-bottom: 2rem;
        }
        .hero-foot {
            max-width: 90%;
            font-size: 1rem;
        }
    }
    .func-example {
        display: none;
    }
    .home-footer {
        margin-bottom: 2rem;
        h4 {
            max-width: 90%;
            font-size: 1rem;
        }
    }
    .home-cta {
        margin-bottom: 3rem;
    }
}