body {
  margin: 0;
  padding: 0;
  height: 100vh;
}

.container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-image: url('pinkpepperrotate.gif');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.flex-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.center-text{
  font-size: 10rem;
  opacity: 0.7;
}

.counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3rem;
  font-family: "Cookie";
  opacity: 0.7;
  margin: 0;
  pointer-events: none;
  z-index: 1;
}

.counterGlobal {
  position: absolute;
  top: 1%;
  left: 1%;
  font-size: 2rem;
  font-family: "Cookie";
  opacity: 0.3;
  margin: 0;
  pointer-events: none;
  z-index: 1;
}

.linkMain {
  display: inline-block;
  animation: spicyPulse 2s infinite ease-in-out,
             spicyGlow 2s infinite ease-in-out;
  transition: transform 0.3s ease;
  text-decoration: none;
  color: black;
  user-select: none;
}

.linkMain:hover {
  animation: spicyBounce 0.6s infinite;
  color: #ba3914;
  -webkit-text-stroke: 1px black;
  text-shadow:
    1px 1px 0 black,
    -1px -1px 0 black,
    1px -1px 0 black,
    -1px 1px 0 black;
}

/* Animations */
@keyframes spicyPulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.2) rotate(5deg); }
  100% { transform: scale(1);}
}

@keyframes spicyBounce {
  0%, 100% { transform: translateY(0); }
  25%      { transform: translateY(-20px); }
  75%      { transform: translateY(20px); }
}

@keyframes spicyGlow {
  0%   { text-shadow: 0 0 10px #ff4500; }
  50%  { text-shadow: 0 0 75px #ff6347; }
  100% { text-shadow: 0 0 10px #ff4500; }
}