@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap');

body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background-color: #0d0d0d;
  color: #e0f7fa;
  text-align: center;
}

header {
  background-color: #000000;
  color: #00ffe1;
  padding: 2em 1em;
  box-shadow: 0 0 20px #00ffe1;
}
.logo {
  height: 100px;
}
h1 {
  margin: 0.2em 0;
  font-size: 2.5em;
  text-shadow: 0 0 15px rgb(0, 255, 255);
}

section {
  padding: 4em 2em;
}

.descripcion p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.2em;
  color: #c1fdff;
}

#canvas-container {
  display: flex;
  justify-content: center;
  background: radial-gradient(circle, #0f0f0f, #000000);
  padding: 2em 0;
  box-shadow: inset 0 0 40px #00d0ff33;
}

.info-autor img {
  width: 150px;
  border-radius: 50%;
  box-shadow: 0 0 20px #00ffe1;
}

.pastillas {
  display: flex;
  justify-content: center;
  gap: 2em;
  flex-wrap: wrap;
}
.pastillas div {
  background-color: #111;
  padding: 1em;
  border-radius: 12px;
  width: 200px;
  transition: all 0.3s;
  box-shadow: 0 0 10px #00fff7;
}
.pastillas div:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #00fff7;
}
.pastillas img {
  width: 200px;
  margin-bottom: 0.5em;
}

footer {
  background: #000;
  color: #00ffe1;
  padding: 2em 1em;
  font-size: 0.9em;
  box-shadow: 0 -4px 20px rgb(167, 27, 255);
}
section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}
section.visible {
  opacity: 1;
  transform: translateY(0);
}
