
@font-face {
  font-family: Nunito;
  src: url('https://sadhost.neocities.org/fonts/Nunito-Regular.ttf');
}
@font-face {
  font-family: Nunito;
  src: url('https://sadhost.neocities.org/fonts/Nunito-Bold.ttf');
  font-weight: bold;
}

body {
  margin: 0;
  padding: 0;
  background-image: url("d36c9235.gif");
  background-repeat: repeat; /* o no-repeat */
  background-position: center;
  background-attachment: fixed; /* opcional, queda lindo */
}

#header {
   display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0; /* espacio arriba y abajo */
}

.banner {
  width: 500px;     /* tamaño real */
  height: 100px;
  max-width: 100%;  /* para celular */
  image-rendering: auto;
  display: block;
  border: 2px solid #ED64F5;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(237,100,245,0.6);
}
.divider {
  width: 100%;
  max-height: 25px;   /* probá 20px – 30px */
  object-fit: contain;
  display: block;
  margin: 16px 0;
}

* {
  box-sizing: border-box;
}

#container {
  max-width: 900px;
  margin: 30px auto;
  background: transparent; /* importante */
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Layout */
#flex {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* Sidebar */
#leftSidebar {
  width: 220px;
  background-color: #241445;
  border: 2px solid #ED64F5;
  border-radius: 8px;
  padding: 20px;
  color: #fceaff;
}

#leftSidebar h2 {
  margin-top: 0;
  color: #ED64F5;
  font-size: 18px;
}

#leftSidebar ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

#leftSidebar ul li {
  font-size: 14px;
  margin-bottom: 6px;
}

#leftSidebar ul li::before {
  content: "♡ ";
  color: #ff9de2;
}

#leftSidebar a {
  color: #ff9de2;
  text-decoration: none;
}

#leftSidebar a:hover {
  text-decoration: underline;
}

/* Main */
main {
  flex: 1;
}

main section {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  background-color: #5e4e8c;
  border: 2px solid #ED64F5;
  border-radius: 8px;
  padding: 20px;
}

main section.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

main h1 {
  color: #ED64F5;
  font-size: 22px;
  margin-top: 0;
}

footer {
  background-color: #13092D;
  text-align: center;
  padding: 10px;
  margin-top: 20px;
}


/* Responsive */
@media (max-width: 800px) {
  #flex {
    flex-direction: column;
  }
  #leftSidebar,
  main {
    width: 100%;
  }
}
