body {
  font-family: 'Comic Sans MS', cursive;
  color: #fff;
  background-color: #6b3b2d;
  margin: 0;
}

#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

h1 {
  font-size: 5rem;
}

.main-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  position: absolute;
}

#leaves {
  width: 100vw;
  height: 100vh;
  filter: blur(0.5rem);
  opacity: 0.3;
}

.emoji-container {
  width: 100vw;
  overflow: hidden;
  white-space: nowrap;
  background: transparent;
  padding: 10px 0;
  position: relative;
}
.emoji-loop {
  display: flex;
  width: max-content;
  font-size: 2rem;
  animation: scroll 30s linear infinite;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

#label {
  text-align: center;
  font-size: 4rem;
}

.countdown-container {
  display: flex;
  justify-content: center;
}

#countdown {
  background-color: #48281e;
  padding: 2rem;
  border-radius: 1rem;
  display: flex;
  font-size: 3rem;
  font-weight: bold;
  gap: 10px;
  font-family: monospace;
  text-align: center;
  justify-content: center;
}

.time-box {
  display: flex;
  gap: 5px;
}

.digit {
  width: 50px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #222;
  border: 2px solid #fff;
  border-radius: 8px;
  box-shadow: 0 0 0.25rem rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease-in-out;
}

.colon {
  font-size: 3rem;
  padding: 0 5px;
  color: #fff;
  font-family: 'Comic Sans MS', cursive;
}

a {
  text-decoration: none;
}

#credits {
  margin-right: 1rem;
  text-align: right;
}
