/* Hoja de estilos para la práctica 2 */
body {
  font-family: 'Verdana', sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.seccion {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  color: white;
  font-size: 2em;
}

/* Colores modificados */
.seccion1 {
  background-color: rgb(255, 0, 0);
}

.seccion2 {
  background-color: rgb(224, 210, 210);
}

.seccion3 {
  background-color: rgb(7, 133, 11);
}
