
/* Header */

header{
    text-align: center;
    
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    
    width: 100%;
    height: 270px;
    
    background-image: url(../img/background_escolar.jpg);
    
    border-bottom: 4px solid #009D00;
    margin-bottom: 30px;
    padding-inline: 60px;
    
}

header img{
    width: 110px;
    height: auto;
}

header h1, header h2{
    font-size: 2rem;
    font-weight: normal;
    color: aliceblue;
    text-shadow: 1px 1px 5px #000;
}
header h2{
    padding: 0;
    margin: 0;
    font-size: 1rem;
}



/* FIM Header END */

@media (max-width:960px) {
    
    header{
        height: 300px;
        justify-content: center;
        flex-direction: column;
        gap: 35px;
    }
    header a {
        position:unset;
        width: 120px;
        height: auto;
    }

    header h1, header h2{
        font-size: 1.5rem;
    }
    header h2{
        font-size: 0.9rem;
    }
    
    
}