/* configurações de todos os elementos da header*/
header {
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    height: 50px;
    width: 100vw;
    font-size: var(--font-size-default2);
    z-index: 2;
}
header a{
    text-decoration: none;
    color: #FF3636;
    text-transform: uppercase;
    border: 2px solid var(--cor-texthover);
    border-radius: 15px;
    padding: 4px;
    text-align: center;
    cursor: pointer;
    font-weight: 900;
    font-size: var(--font-size-default);
    transition: 0.2s;
}
header a:active{
    background-color: var(--cor-red);
}
header a:hover{
    background-color:var(--cor-red);
    color: white;
}
/*
header div{
    width: 90px;
    border: 2px solid var(--cor-texthover);
    height: 35px;
    text-align: center;
}*/
header img{
    text-align: center;
    width: 50px;
    height: 50px;
}