body {
  background: url('../images/bg7.jpeg');
  color: #00ffcc;
  font-family: "Comic Sans MS", cursive, sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
  font-size: 24px;
  overflow-y: scroll;
  cursor: url('../images/smi352.cur'), auto;
}

h1 {
  background: linear-gradient(to right, #ff00cc, #3333ff);
  color: yellow;
  padding: 20px;
  text-shadow: 2px 2px #000;
  border-bottom: 3px dashed #00ffff;
}

.container {
  margin-top: 30px;
}

.social-links img {
  width: 50px;
  margin: 10px;
  border: 2px solid #fff;
  border-radius: 10px;
}

.blink {
  animation: blink 1s step-start infinite;
  font-weight: bold;
  color: red;
}

@keyframes blink {
  50% { opacity: 0; }
}

.estrella {
  position: fixed;
  top: -20px;
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 8px white;
  animation: caer linear infinite;
  opacity: 0.8;
  z-index: 0;
}

@keyframes caer {
  0% { transform: translateY(0); }
  100% { transform: translateY(100vh); opacity: 0; }
}

.bg-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 2s ease-in-out;
  z-index: -1;
}

#bg1 { opacity: 1; }
#bg2 { opacity: 0; }

.gif {
  margin: 20px auto;
  display: block;
  border: 4px double #00ffff;
  border-radius: 12px;
  width: 180px;
}

.gif-fuego {
    width: 32px; 
    vertical-align: bottom;
}

.texto1 {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(45deg, red, orange, yellow, green, cyan, blue, violet);
    color: transparent;
    text-shadow: 1px 1px black;
    -webkit-background-clip: text;
}

.div1 {
    margin-top: 40px;
    margin-bottom: 40px;
}

.boton {
    font-size: 18px;
    padding: 10px 20px;
    background: #ff00cc;
    color: yellow;
    text-decoration: none;
    border: 3px double cyan;
    box-shadow: 0 0 12px #ff00ff;
    border-radius: 10px;
    font-weight: bold;
}

.boton img {
    height: 22px;
}