/* Estilos generales */
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background-image: url('fondo.jpg'); /* Ajusta la ruta y el nombre de tu imagen */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Contenedor semitransparente */
.contenedor {
  width: 80%;
  height: 80%;
  background-color: rgba(255, 255, 255, 0.8); /* Blanco con 80% de opacidad */
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  overflow: auto;
}

/* Título */
h1 {
  color: #0066cc;
  margin-bottom: 20px;
}

/* Párrafo */
p {
  font-size: 1.2rem;
  color: #333;
}