/* Difuminado */
.container {
  background-color: rgba(0, 0, 0, 0.5); /* Color de fondo semitransparente */
  backdrop-filter: blur(10px); /* Aplicar desenfoque */
  border-radius: 10px; /* Borde redondeado */
  padding: 30px; /* Espaciado interno */
  min-height: 210px;
  min-width: 320px;
  max-width: 600px;
  width: fit-content; /* Ajustar al contenido */
  margin: auto; /* Centrar horizontalmente */
  text-align: center; /* Centrar texto */
}

/* Titulo y Fecha */
.title-wrapper {
  display: inline-block;
  margin-bottom: 20px;
  position: relative;
  text-align: left;
}

.title-wrapper h1 {
  display: inline;
  color: #ab87ff;
  font-size: 2.5rem;
  margin: 0;
}

.post-date {
  margin-left: 10px;
  color: #777;
  font-size: 0.9em;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
  }
  .title-wrapper h1 {
    display: block;
    margin-left: 0;
    margin-bottom: 5px;
  }
  .post-date {
    display: block;
    margin-left: 0;
    margin-top: 5px;
    text-align: center;
  }
}

/* Contenido */
body {
  background-image: url('../../images/background.png'); /* Ruta de la imagen de fondo */
  background-size: cover; /* Ajustar tamaño de la imagen para cubrir toda la página */
  background-position: center; /* Centrar la imagen */
  background-repeat: no-repeat; /* Evitar la repetición de la imagen */
  background-attachment: fixed; /* Fijar la imagen de fondo para que no se desplace con el contenido */
  background-color: #51446f; /* Color de fondo de respaldo */
  color: #e0dfda; /* Color de texto */
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100dvh;
}

h1 {
  color: #ab87ff; /* Color de texto */
  font-size: 2.5rem;
  margin-bottom: 20px;
}

a {
  color: #e0dfda;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

a:hover {
  color: #ffffff; /* Color al pasar el mouse */
}

ul {
  list-style-type: none;
  padding: 0;
}

li {
  margin-bottom: 1rem;
}

small {
  color: #777;
  font-size: 0.9em;
}

/* Go Back */
.go-back {
  margin-top: 40px;
}

.go-back a {
  color: #e0dfda;
  font-size: 1.3rem;
  text-decoration: underline;
}

.go-back a:hover {
  color: #ffffff;
}



