.css1{
    width: 40%;
    height: 20%;
}
.title{
    position: center;
}
.contenedor{
    padding: 1rem;
    margin-top: 5rem;
}
figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 2rem 0;
  }
  
  figure img {
    display: block;
    margin: 0 auto;
    width: 40%;
    height: 20%;
  }
  
  figure figcaption {
    margin-top: 1rem;
  }
  
  /*Diseño de modo maquina escribir*/
.typewriter {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap; /* Evita que el texto se divida en varias líneas */
    border-right: .15em solid orange;
    animation: typing 10s steps(40, end),
               blink-caret .75s step-end infinite;
  }
  
  @keyframes typing {
    from { width: 0 }
    to { width: 100% }
  }
  
  @keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: orange }
  }

  body {
    max-width: 800px; /* Ancho máximo del contenedor */
    margin: 0 auto; /* Centrar el contenedor horizontalmente */
    padding: 20px; /* Espacio interno del contenedor */
    font-family: Arial, sans-serif; /* Tipo de letra */
    font-size: 16px; /* Tamaño de letra */
    line-height: 1.5; /* Interlineado */
    color: #333; /* Color de texto */
    background-color: #f5f5f5; /* Color de fondo */
  }
  
  
h1 {
    color: #000000;
    text-align: center;
    font-size: 30px;
}
h3{
    font-size: 14px;
}
form {
    background-color: #788f8c;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 0 auto;
    max-width: 600px;
}
/* Estilo para la flecha */
.arrow {
    position: relative;
    margin-top: -140px;   
    right: 180px;
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-right: 40px solid rgb(230, 93, 30);
    z-index: 1;
    transform: rotate(180deg);
    animation: blink 1s infinite;
  }
  @keyframes blink {
    50% {
      opacity: 0.10;
    }
  }
  .arrow2 {
    position: relative;
    margin-top: -82px;   
    right: 180px;
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-right: 40px solid rgb(230, 93, 30);
    z-index: 1;
    transform: rotate(180deg);
    animation: blink 1s infinite;
  }
  .arrow3 {
    position: relative;
    margin-top: -65px;   
    right: 180px;
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-right: 40px solid rgb(230, 93, 30);
    z-index: 1;
    transform: rotate(180deg);
    animation: blink 1s infinite;
  }
  /* Estilo para el campo que se quiere señalar */
  .field {
    position: relative;
  }
  
  /* Estilo para el texto de ayuda */
  .help-text {
    display: none;
    position: absolute;
    top: 80px;
    left: 30px;
    background-color: white;
    padding: 10px;
    border: 1px solid black;
  }
  
  /* Mostrar el texto de ayuda al hacer hover sobre la flecha */
  .arrow:hover + .field .help-text {
    display: block;
  }
  