*{
  color: #EEF0F2;
}

body{
  background-image: linear-gradient(100deg, #aa8fd8, #3C4F76);
}

header{
  display: flex;
  align-items: center;
  justify-content: center;
}

nav {
  display: flex;
  background-color: rgba(40, 0, 86, 0.392);
  align-items: center;
  justify-content: center;
  padding: 10px;
  gap: 50px;
  border-radius: 20px;
}

nav a{
  text-decoration: none;
}

nav a:hover{
  color: gray;
}

main{
  display: flex;
  justify-content: space-between;
  margin: 30px;
}

#left, #right{
  width: 40%; 
  background-color: rgba(40, 0, 86, 0.392);
  padding: 20px;
  border-radius: 30px;
}
.rodape{
  text-align: center;
  justify-content: center;
}

.rodape p {
  display: inline-block;               
  padding: 8px 16px;                   
  border-radius: 12px;
  font-size: 12px;
  background-color: rgba(40, 0, 86, 0.392);
}