body {
  margin: 0;
  font-family: "Courier New", monospace;
  background: radial-gradient(circle at top, #2b004f, #000010);
  color: #e0d7ff;
  display: flex;
}

/* BOTONES IDIOMA */
.language-switch {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 1000;
}

button {
  background: black;
  color: #b48cff;
  border: 1px solid #b48cff;
  padding: 5px 10px;
  margin-left: 5px;
  cursor: pointer;
}

button:hover {
  background: #b48cff;
  color: black;
}

/* SIDEBAR */
.sidebar {
  width: 220px;
  height: 100vh;
  flex-shrink: 0;
  background-image: url("images/stars5.gif");
  background-repeat: repeat;
  background-size: 1000px auto;
}

.logo {
  text-align: center;
  text-shadow: 0 0 10px #b48cff;
}

.sidebar nav {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}

.sidebar nav a {
  color: #b48cff;
  text-decoration: none;
  margin: 10px 0;
  transition: 0.2s;
}

.sidebar nav a:hover {
  text-shadow: 0 0 8px #ffffff;
  transform: translateX(5px);
}

/* REDES */
.social {
  margin-top: 40px;
  display: flex;
  justify-content: space-around;
}

.social img {
  width: 35px;
  transition: 0.3s;
}

.social img:hover {
  transform: scale(1.2);
}

/* CONTENIDO */
.content {
  flex: 1;
  margin-left: 0px;
  padding: 100px;
  min-height: 100vh;

  background-image: url("images/pages.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;

  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  text-shadow: 0 0 15px #b48cff;
}

.subtitle {
  font-style: italic;
}

section {
  border: 2px solid #7f5cff;
  margin-top: 40px;
  padding: 20px;
  background: rgba(0, 0, 60, 0.5);
}

/* IDIOMAS */
.hidden {
  display: none;
}