body {
    background-color: rgb(148, 110, 151);
}

h2 {
    color: rgb(211, 37, 95);
    font-family: 'Courier New', Courier, monospace;
    font-size: 40px;
    text-align: center;
}

a {
    color:rgb(226, 153, 248);
}

body {
    background-color: rgb(236, 74, 164);
}

header {
    background-color: rgb(211, 37, 95);
    font-size: 20px;
    font-family: Georgia;
    border-radius: 40px;
}

nav {
    display: flex;
  justify-content: center;
  gap: 20px;
  background-color: #f15385;
  padding: 15px;
  border-radius: 30px;

}

p {
    font-size: 30px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif ;
    margin-left: 70px; 
    line-height: 1.6;   
}

h1 {
    font-family: 'Courier New', Courier, monospace;
    color: rgb(211, 37, 95);
    font-size: 40px;
    text-align: center;
}

#P2 {
    margin-right: 30px;
    margin-left: 70px;
    line-height: 1.6;
}

section {
    background-color: #ffaedd; 
    padding: 20px;            
    margin: 20px auto;      
    max-width: 2000px;        
    border-radius: 8px;       
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

nav a{
    color: rgb(139, 3, 66);
    margin: 0 100px;
    text-align: center;
}

.animar-legado {
  opacity: 0;
  transform: translateY(-40px);
  animation: descer 1s ease forwards;
}

.animar-importancia {
  opacity: 0;
  transform: translateX(60px);
  animation: direita 1s ease forwards;
}

@keyframes descer {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes direita {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}