*{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}
body{
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(226, 226, 21, 0.911), rgb(41, 131, 167));
    justify-content: center;
    flex-direction: column;
    height: 100vh;
}
header{
    margin-top: 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
}
header h1{
    margin-bottom: 10px;
}

.cidades{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 75px;
    margin-top: 35px;
    background: rgba(173, 216, 230, 0.575);
    border-radius: 25%;
}
.cidades img{
    height: 35vh;
    width: 65%;
}
.cidades p{
    margin-top: 15px;
}

.btn{
    display: flex;
    align-items: center;
    justify-content: space-between;
} 

.btn button{
    background: rgba(179, 175, 175, 0.473);
    margin-left: 15px;
    border-radius: 25px;
    padding: 30px;
    margin-top: 25px;
}

