* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.corpo {
    background-color: lightblue;
    font-family: Arial, Helvetica, sans-serif;
}

.imagem1 {
    width: 70px;
    margin-right: 25px;
}

ul {
    background-color: black;
    list-style-type: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

li {
    float: left;
}

li a,
.dropbtn {
    display: inline-block;
    color: lightblue;
    padding: 14px 16px;
    text-decoration: none;
    text-align: center;
    font-size: 50px;
}

li a:hover,
.dropdown:hover .dropbtn {
    background-color: black;
}

li.dropdown {
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: black;
    width: 100%;
}

.dropdown-content a {
    color: lightblue;
    display: block;
    text-align: left;
    font-size: 20px;
}

.dropdown-content a:hover {
    color: white;
}

.dropdown:hover .dropdown-content {
    display: block;
}

h4 {
    text-align: center;
    background-color: lightblue;
    color: black;
}

.container0 {
    max-width: 100%;
    background-color: white;
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
    padding: 15px;
    background-color: darkblue;
    overflow: hidden;
    background-color: lightblue;
}

.container1 {
    max-width: 100%;
    background-color: rgb(216, 216, 233);


    border-radius: 5px;
    margin-bottom: 40px;
    padding: 5px;
    overflow: hidden;
}

.container3 {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.rodape {
    color: lightblue;
    background-color: black;
    margin-top: 40px;
    text-align: center;
    padding: 10px;
}

.natal {
    max-width: 100%;
}

/* RESPONSIVIDADE PARA TELAS GRANDES (768px)*/
@media (min-width: 768px) {
    .container1 {
        width: 100%;
        display: block;
        justify-self: center;
        background-color: darkblue;
        color: white;
    }

    .container1,
    img {
        width: 50%;
    }

    /*menu dropdonw*/
    .dropdown-content {
        display: none;
        position: absolute;
        background-color: black;
        width: 50%;
        border-radius: 0px 0px 5px 0px;
    }


}

/* RESPONSIVIDADE PARA TELAS GRANDES (1024px)*/
@media (min-width: 1024px) {
    .container1 {
        width: 30%;
        display: block;
        justify-self: center;
    }

    .menu a:hover {
        background-color: lightblue;
        color: black;
        border-radius: 5px;
        transition: 1s;
        padding: 1px;
    }

    .container0 {
        background-color: darkblue;
        width: 50%;
        display: block;
        justify-self: center;
        border-radius: 5px;
    }

    .container1 {

        width: 50%;
    }

    .rodape {
        position: relative;
        bottom: 0;
        width: 100%;
        color: lightblue;
        background-color: black;
        margin-top: 40px;
        text-align: center;
        padding: 10px;
    }

    .texto-left {
        text-align: justify;
    }

    /*menu dropdonw*/
    .dropdown-content {
        display: none;
        position: absolute;
        background-color: black;
        width: 50%;
        border-radius: 0px 0px 5px 0px;
    }

}