@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

.page {
    background-color: #fff;
    width: 70vw;
    height: auto;
    margin: 65px auto 0;
    font-family: 'Mulish', sans-serif;
}

header {
   display: flex;
   justify-content: space-between;
   align-items: center;

   margin-bottom: 55px;
}

header a {
    font-weight: 500;
    font-size: 18px;
    color: #7D7987;
}

header a:hover {
    color: #1F1534;
    font-weight: 700;
    font-size: 18px;
    transition: all .2s2;
}

header nav ul {
    display: flex;
    gap: 48px;
}

header .fa-bars {
    display: none;
}


.hero {
    display: flex;
    justify-content: space-between;

    margin-bottom: 20px;
}

.text {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 50%;
    color: #7D7987
}

.text h1 {
    font-size: 3em;
}

.text button {
    width: 179px;
    height: 56px;
    background-color: #69B99D;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
}

.hero span {
    color: #69B99D;
}

.bolls {
    position: fixed;
    bottom: 10px;
}

footer {
    position: fixed;
    bottom: 20px;
    left: 38%;
}

/* Responsivo */

@media (max-width: 800px) {

    header .fa-bars {
        display: block;
        width: 18px;
        color: #7D7987;
    }

    header .fa-bars:hover {
        color: #1F1534;
    }

    header nav ul {
        display: none;
    }

    .hero {
        flex-direction: column;
        align-items: center;
    }

    .text {
        width: 80vw;
        align-items: center;
        gap: 40px;
        text-align: center;
    }

    .text h1 {
        text-align: center;
        font-size: 2.5rem;
    }

}
