/* Hoja de estilos para la práctica 3 */
body {
  text-align: center;
  margin: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.seccion {
  flex: 1; /* Hace que cada sección ocupe el mismo espacio */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5em;
}

.seccion1 {
  background-color: yellow;
  font-family: 'Times New Roman', serif;
  color: black;
}

.seccion2 {
  background-color: blue; 
  font-family: 'Courier New', monospace;
}

.seccion3 {
  background-color: red;
  font-family: 'Arial', sans-serif;
}
