body {
  font-family: Arial, sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
  background-image: url('fondo-navidad.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 100vh; /* mejor que height */
  color: #fff;
}

 h1 {
  margin: 30vh auto 5px auto; /* vertical relativo */
  font-size: clamp(22px, 4vw, 30px);
  color: #0000ff;
  max-width: 900px;
  padding: 0 15px;
}

  h2 {
    margin:10px;
    font-size: 24px;
    color:#9d1a05;
   

}
  .tipos-perfil {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap; /* CLAVE */
}

  .opcion {
    cursor: pointer;
    text-align: center;
  }
  .opcion img {
    width: 200px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }
  .opcion img:hover {
    transform: scale(1.1);
  }
  .opcion span {
    display: block;
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
  }
