* {
    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 {
    font-size: 30px;
    margin-top: 10px;
    max-width: 100%;
    background-image: linear-gradient(white);
    padding: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

input {
    height: 35px;
    border-radius: 5px;
    font-size: 20px;
    border-radius: 1px solid black;
    outline: none;
}

button {
    width: 100%;
    height: 40px;
    display: block;
    margin-top: 10px;
    border-radius: 10px;
    border: none;
    text-align: center;
    background-image: linear-gradient(black, darkblue);
    color: lightblue;
    font-size: 20px;
}

button:hover {
    background-image: linear-gradient(lightblue, green);
    color: white;
}

.container3 {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

label {
    font-size: 20px;
}

.rodape {
    color: lightblue;
    background-color: black;
    margin-top: 40px;
    text-align: center;
    padding: 10px;
}

.alerta {
    overflow: hidden;
    max-width: 100%;
    padding: 20px;
    text-align: center;
    color: black;
    margin-top: 10px;
}

.natal {
    max-width: 100%;
}

.podemos-ajudar {
    width: 100%;
    height: 40px;
    display: inline-block;
    margin-top: 10px;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    align-content: center;
    background-image: linear-gradient(black, darkblue);
    color: lightblue;
    font-size: 20px;
    text-decoration: none;

}

.podemos-ajudar:hover {
    background-image: linear-gradient(lightblue, green);
    color: white;
}

/* RESPONSIVIDADE PARA TELAS GRANDES (768px)*/
@media (min-width: 768px) {

    /*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) {
    .container0 {
        width: 50%;
        display: block;
        justify-self: center;
        padding: 10px;
        border-radius: 5px;
        background-color: darkblue;
    }

    .container4 {
        width: 50%;
        border-radius: 5px;
        margin-top: 10px;
        display: block;
        justify-self: center;
        background-color: darkblue;
        padding: 10px;
        color: white;
    }

    .container4,
    img {
        width: 50%;
        border-radius: 5px;
        display: block;
        justify-self: center;
        margin-bottom: 10px;

    }

    .container5 {
        width: 30%;
        display: block;
        justify-self: center;
    }


    .menu a:hover {
        background-color: lightblue;
        color: black;
        border-radius: 5px;
        transition: 1s;
        padding: 1px;
    }

    .podemos-ajudar {
        width: 100%;
        height: 40px;
        display: inline-block;
        margin-top: 10px;
        border-radius: 10px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        align-content: center;
        background-image: linear-gradient(green);
        color: lightblue;
        font-size: 20px;
        text-decoration: none;

    }

    /*menu dropdonw*/
    .dropdown-content {
        display: none;
        position: absolute;
        background-color: black;
        width: 50%;
        border-radius: 0px 0px 5px 0px;
    }
}