* {
    margin: 0;
}

.corpo {
    background-color: lightblue;
    font-family: Arial, Helvetica, sans-serif;
}

.imagem1 {
    width: 70px;
    margin-right: 25px;
}

ul {
    background-color: darkblue;
    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: darkblue;
}

li.dropdown {
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: darkblue;
    width: 50%;
    border-radius: 5px 5px 5px 0px;
}

.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;
}

.container0 {
    font-size: 30px;
    margin-top: 10px;
    max-width: 100%;
    background-color: 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;
    margin-top: 10px;
    border-radius: 10px;
    text-align: center;
    background-color: darkblue;
    color: lightblue;
    font-size: 20px;
    border: none;
}

button:hover {
    background-color: green;
    color: white;
}

.container3 {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

label {
    font-size: 20px;
}

.rodape {
    color: lightblue;
    background-color: darkblue;
    margin-top: 40px;
    text-align: center;
    padding: 10px;
}

.alerta {
    overflow: hidden;
    max-width: 100%;
    padding: 20px;
    text-align: center;
    color: darkblue;
    margin-top: 10px;
}

@media (min-width: 1024px) {
    .container0 {
        font-size: 30px;
        margin-top: 10px;
        width: 50%;
        background-color: darkblue;
        display: block;
        justify-self: center;
        color: white;
        padding: 20px;
        border-radius: 5px;
    }

    button{
        background-color: green;
        width: 50%;
        display: inline-block;
        align-self: center;
        cursor: pointer;
    }

    .container4{
        background-color: darkblue;
        width: 50%;
        color: white;
        display: block;
        justify-self: center;
        border-radius: 5px;
        padding: 10px;
        margin-top: 15px;
    }

    .container4, .imagem-propagranda{
        width: 50%;
        display: block;
        justify-self: center;
        border-radius: 5px;
    }

}