/* 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; /* Amarillo */
    font-family: 'Times New Roman', serif;
    color: rgb(0, 0, 0); /* Contraste con amarillo */
  }
  
  .seccion2 {
    background-color: rgb(0, 0, 255); /* Azul */
    font-family: 'Courier New', monospace;
  }
  
  .seccion3 {
    background-color: rgb(255, 0, 0); /* Rojo */
    font-family: 'Arial', sans-serif;
  }
  