/* Estilos generales */
body {
    margin: 0;
    font-family: "Titillium Web", serif;
    background-color: black;
    color: white;
    overflow: hidden;
  }
  
  .header {
    text-align: left;
    margin-top: 20px;
    margin-left: 20px;
  }
  
  
  .header h1 {
    margin: 0;
    font-size: 50px; /* Tamanho de fuente igual al del index */
    font-weight: bold;
    color: white;
  }
  
  .poetic-text-container {
    display: flex;
    justify-content: center;
    padding: 16px;
    margin-top: -30px;

  }
  
  .poetic-text {
  font-size: 16px;
  font-weight: normal;
  }
  
  .footer-left {
    position: fixed;
    bottom: 20px;
    left: 20px;
  }
  
  .footer-left .btn {
    background-color: black;
    color: white;
    border: none;
    padding: 10px 15px;
    margin-bottom: 10px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .footer-left .btn:hover {
    background-color: white;
    color: black;
    border: 1px solid black;
  }
  
  /* Contenedor iframe */
  .iframe-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 100px;
  }
  