/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background: url("https://i.imgur.com/8g3Z8pO.gif");
  background-color: #0b0b0f;
  color: #ffd6e8;
  font-family: "Comic Sans MS", Arial, sans-serif;
  text-align: center;
}

.frame {
  width: 900px;
  margin: auto;
  background: linear-gradient(180deg, #1a0010, #0b0b0f);
  border: 6px solid #ff9acb;
  box-shadow: 0 0 30px #ff5fa2;
  padding: 20px;
}

.header {
  border: 3px dashed #ffb3d9;
  padding: 20px;
  margin-bottom: 20px;
  background: rgba(30,0,20,0.7);
}

.profile {
  width: 120px;
  border-radius: 50%;
  border: 3px solid #ff9acb;
  box-shadow: 0 0 10px #ff5fa2;
}

h1 {
  font-size: 50px;
  color: #ff9acb;
  text-shadow: 0 0 10px #ff5fa2;
  margin: 10px 0;
}

.tagline {
  font-style: italic;
  color: #ffb3d9;
}

.menu {
  margin: 20px 0;
}

.menu a {
  display: inline-block;
  padding: 8px 16px;
  margin: 5px;
  border: 2px solid #ff9acb;
  color: #ffd6e8;
  text-decoration: none;
  background: rgba(20,0,10,0.7);
  transition: 0.3s;
}

.menu a:hover {
  background: #ff9acb;
  color: #0b0b0f;
  box-shadow: 0 0 10px #ff5fa2;
}

.content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.box {
  border: 2px dashed #ff9acb;
  padding: 15px;
  background: rgba(20, 0, 10, 0.7);
  box-shadow: inset 0 0 10px #ff5fa2;
}

.box h2 {
  color: #ff9acb;
}

.footer {
  margin-top: 20px;
  border-top: 2px solid #ff9acb;
  padding-top: 10px;
  font-size: 14px;
  color: #ffb3d9;
}
.frame {
  animation: glow 3s infinite alternate;
}

@keyframes glow {
  from { box-shadow: 0 0 20px #ff5fa2; }
  to { box-shadow: 0 0 40px #ff9acb; }
}

/* Texto flotante */
h1 {
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

/* Botones con pulso */
.menu a {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 5px #ff5fa2; }
  50% { box-shadow: 0 0 15px #ff9acb; }
  100% { box-shadow: 0 0 5px #ff5fa2; }
}
