/* POSITION */
.cake {
  position: absolute;
  display: none;
  left: 50%;
  margin-left: -150px;
  width: 300px;
  height: 300px;
}

/* BASE */
.cake:after {
  background: #ffffff;
  border-radius: 300px;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 6px;
}

/* CANDLE */
.velas {
  background: #ffffff;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -7.5px;
  margin-top: -25px;
  width: 15px;
  height: 50px;
}
.velas:after,
.velas:before {
  background: rgba(255, 0, 0, 0.4);
  content: "";
  position: absolute;
  width: 100%;
  height: 6.7px;
}
.velas:after { top: 25%; }
.velas:before { top: 45%; }

/* FIRE */
.fuego {
  display: none;
  background: rgba(255, 230, 167, 0.9); /* soft warm pastel flame */
  border-radius: 50%;
  position: absolute;
  top: -12px;
  left: 50%;
  margin-left: -10px;
  width: 20px;
  height: 38px;

  /* 🔥 glow effect */
  box-shadow:
    0 0 15px rgba(255, 230, 167, 0.6),
    0 0 30px rgba(255, 200, 120, 0.4),
    0 0 45px rgba(255, 170, 80, 0.2);
}


/* FROSTING */
.cobertura {
  background: #ece7e3;
  border-radius: 150px;
  position: absolute;
  top: 60%;
  left: 50%;
  margin-left: -83.3px;
  margin-top: -15px;
  width: 166.7px;
  height: 37.5px;
  z-index: 10;
}
.cobertura:after,
.cobertura:before {
  background: #ece7e3;
  border-radius: 300px;
  content: "";
  position: absolute;
  width: 15px;
  height: 30px;
}
.cobertura:after { top: 20px; right: 43px; }
.cobertura:before { top: 30px; right: 27px; }

/* CAKE BODY */
.bizcocho {
  background: #6d3826;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -75px;
  width: 150px;
  height: 100px;
}
.bizcocho:after,
.bizcocho:before {
  background: rgba(236,231,227,0.6);
  content: "";
  position: absolute;
  width: 100%;
  height: 15px;
}
.bizcocho:after { top: 30%; }
.bizcocho:before { top: 60%; }

/* TEXT */
h1, p {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-style: italic;
  text-align: center;
  width: 100%;
  user-select: none;
}
