
  /* Estilo de letras*/  
  body {
    font-family: 'Roboto', sans-serif;
    background-color: #121212;
    color: #f1f1f1;
  }

  h1, h2, h3 {
   font-family: "Playwrite IE", cursive;
    color: #fff;
  }

  p {
    font-size: 1.2rem;
  }

  /* Aumentando los espaciós entre secciones */
  section {
    padding: 2rem;
  }

  /*Estilo de las "tarjetas" y animación*/
  .contenedor-tarjetas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .tarjeta {
    border-radius: 8px;
    background-color: #333;
    border: 1px solid #555;
    padding: 1rem;
    width: 300px;
    transition: transform 0.3s ease;
  }

  .tarjeta:hover {
    transform: scale(1.05);
  }

  /* Estilo de la foto y alineación */
  .foto {
    display: block;
    margin: 1rem auto;
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
  }

  /*Areglo de alineación*/
  h1, h2, h3, p {
    text-align: center;
  }

  /*Formulario*/
form{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}
input, textarea {
  width: 100%;
  border: 1px solid #555;
  padding: 0.5rem;
  border-radius: 3px;
}

/*Peliculas y animación*/
.pelicula {
  text-align: center;
  margin-bottom: 2rem;
}

/* Estilo navegacion */
nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

/* Boton de envio */
button {
  width: 100%;
  background-color: #555;
  color: #fff;
  border: 1px solid #555;
  padding: 0.5rem 1rem;
  border-radius: 3px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
button:hover {
  background-color: #ffee00;
}

/* Estilo de enlaces */
a {
  color: #2f00ff;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #fbff00;
}

/* Ajuste para pantallas pequeñas */
@media (max-width: 768px) {
  .tarjeta {
    width: 90%;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }

  form {
    width: 90%;
  }
}