* {
    margin: 0;
    padding: 0;
}

.cabecalho {
    height: 50px;
    background-color: rgb(107, 106, 106);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    color: rgb(255, 255, 255);
}

.cabecalho a {
    color: beige;
    font-size: 20px;
    text-decoration: none;
    font-family: cursive;
}

.sessao1{
    display: flex;
    justify-content: space-between;
}

.div1 {
    height: 200px;
    background-color: rgb(0, 124, 41);
    width: 33.33%;  
}

.div2 {
    height: 200px;
    background-color: rgb(255, 251, 0);
    width: 33.33%;
}

.div3 {
    height: 200px;
    background-color: rgb(0, 31, 99);
    width: 33.33%;
}

.sessao2{
    display: flex;
    justify-content: space-between;
}

.div4 {
    height: 200px;
    background-color: rgb(255, 1, 1);
    width: 25%;
}
.div5 {
    height: 200px;
    background-color: rgb(27, 255, 244);
    width: 25%;
}
.div6 {
    height: 200px;
    background-color: rgb(241, 31, 189);
    width: 25%;
}
.div7 {
    height: 200px;
    background-color: rgb(2, 80, 67);
    width: 25%;
}

.rodape a, p {
    color: rgb(107, 106, 106);
    font-size: 20px;
    text-decoration: none;
    font-family: cursive;
}

/* Responsividade */
/* Responsividade */
/* Responsividade */

@media (max-width:768px) {
    .sessao1 {
        flex-wrap: wrap;
    }
    .div1{
        background-color: aquamarine;
    }
    .div1 img {
        height: ;
    }
    .div2 {
        width: 50%;
    }
    .div3{
        width: 100%;
    }
    .sessao2{
        flex-wrap: wrap;
    }
    .div4, 
    .div5,
    .div6, 
    .div7 {
        width: 50%;
    }
}

@media (max-width: 420px) {
    .cabecalho{
        flex-direction: column;
        height: 100px;
    }
    .cabecalho a {
        font-size: 15px;
        padding-top: 5px;
        padding-bottom: 5px;
        color: black;
    }
    .sessao1, 
    .sessao2 {
        flex-direction: column;
    }
    .div1,
    .div2,
    .div3,
    .div4,
    .div5,
    .div6,
    .div7 {
        width: 100%;
    }
}