*{
    box-sizing: border-box;
}
body{
    font-family: "Inter", sans-serif;
   
    background-color: #F2F2F2;
}
a{
    text-decoration: none;
    color: inherit;
    font: inherit;
    background-color: inherit;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 0;
}

.header h1 {
    margin: 0;
    text-align: center;
    flex: 1;
    max-width: 60%;
}

.header__button{
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-right: 1rem; 
    justify-content: flex-end;
}

.fa-bars{
    margin-left: 1rem;
}

.account{
    width: 40px;
}

/* .fa-circle-user{
    padding-right: 2rem;
}

.fa-power-off{
    margin-right: 2rem;
} */

h1{
    font-family: "Grandstander", sans-serif;
    font-weight: bold;
    font-size: 4rem;
    text-align: center;
    flex: auto;
    margin-left: 2rem;
}

.button_small--screen{
    border-style: none;
    background-color: transparent;
    padding-inline: 0;
}

:popover-open{
    display: flex;
    flex-direction: column;
    width: 90vw;
    height: 100vh;
    background-color: #F2F2F2;
    box-shadow: 2px 2px 15px 0px #000000;
}

:popover-open ul{
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

:popover-open .menu{
    display: flex;
    flex-direction: column;
}

:popover-open li{
margin: 1rem 0;
font-weight: 500;
font-family: "Oswald", sans-serif;
font-size: 2rem;
}
:popover-open li:hover{
    transform: scale(1.1);
    color: #2589BD;
    font-weight: bold;
}

:popover-open .button__account-close{
    display: flex;
    justify-content: space-between;
    padding: 1rem 1rem 0 1rem;
}
:popover-open .button__account-close button{
    border-style: none;
    background-color: transparent;
}

.menu__largescreen{
    font-family: "Oswald", sans-serif;
    font-size: 1.25rem;
    padding: 1.8rem 0;
    border: 2px solid black;
    border-radius: 100px;
    background-color: white;
}
.menu__largescreen > ul{
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: inherit;
}
.menu__largescreen > ul > li{
    padding: 0 1rem;
    font-weight: 500;
    background-color: inherit;
}
.menu__largescreen li:hover{
    transform: scale(1.1);
    color: #2589BD;
    font-weight: bold;
}

main{
    position: relative;
    min-height: 100vh;
}

h2{
    font-family: "Oswald", sans-serif;
    font-weight: bold;
    font-size: 3rem;
    margin: 1rem;
    text-align: center;
}

.intro{
    width: 100%;
    margin: 2.5rem auto;
    text-align: center;
    line-height: 3.5rem;
}

.intro > h2{
    font-family: "Oswald", sans-serif;
    font-weight: bold;
    font-size: 3rem;
    margin: 1rem 0;
}

.intro > p{
    color: black;
    font-size: 1.5rem;
    width: 60%;
    margin: auto;
    line-height: 2.5rem;
}

.intro > button {
    background-color: black;
    padding: 0.9rem;
    border-radius: 8px;
    border: none;
    box-shadow: none;
}
.intro > button > a {
    background-color: black;
    color: white;
}

.error{
    text-align: center;
    margin: 2rem 0;
    font-size: 2rem;
}

footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #A2FAA3;
    padding: 1.5rem;
    position: absolute;
    width: 100%;
}

footer > p{
    font-size: 1.5rem;
    font-family: "Grandstander", sans-serif;
}

footer > p > span{
    font-weight: bold;
    background-color: inherit;
}

footer > ul{
    display: flex;
    background-color: inherit;
}
footer > ul > li {
    font-family: "Inter", sans-serif;
    font-size: 1.25rem;
    margin: 0 1rem;
    background-color: inherit;
}

footer li:hover{
    font-weight: bold;
    transform: scale(1.1);
}

footer > .social_media{
    display: flex;
}
footer > .social_media > i{
    padding: 0 0.5rem;
}

@media (max-width: 600px) {
    header{
        align-items: baseline;
    }
    h1{
        font-size: 2.5rem;
        margin: 0;
        display: inline;
    }
    .intro > h2{
        font-size: 2rem;
        margin: auto;
    }
    footer{
        flex-direction: column;
    }
    footer ul{
        margin: 2rem 0;
    }
    .menu__largescreen{
        display: none;
    }
    .intro > p{
        font-size: 1rem;
        line-height: 1.5rem;
    }
    .account{
        display: none;
    }
    .header__button{
        display: none;
    }
}
@media (min-width: 600px){
    .button_small--screen{
        display: none;
    }
}