/* Fondo elegante con imagen y desenfoque */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: url('frankfuuuurt.jpeg') no-repeat center center fixed;
  background-size: cover;
  color: #f2f2f2;
  text-align: center;
  position: relative;
}

/* Capa oscura y desenfocada sobre la imagen */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(5px);
  z-index: -1;
}

/* Título principal */
h1 {
  font-size: 3rem;
  margin-bottom: 25px;
  color: #faae2b;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

/* Secciones */
section {
  max-width: 1000px;
  margin: 60px auto;
  padding-top: 40px;
  border-top: 2px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Subtítulos */
h2 {
  font-size: 2rem;
  color: #ffcc5c;
  margin-bottom: 15px;
}

/* Párrafos */
p {
  font-size: 1.2rem;
  margin: 0 20px 20px 20px;
  line-height: 1.6;
  color: #e8e8e8;
}

/* Imágenes */
img {
  max-width: 90%;
  height: auto;
  margin: 10px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

/* Contenedor general de cada bloque */
div {
  margin-bottom: 30px;
}

/* Enlaces */
a {
  color: #4ea5ff;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

a:hover {
  color: #a6dbff;
  text-decoration: underline;
}
