body {
  font-family: "marigny", sans-serif;
  font-weight: 200;
  font-style: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 100vh; */
  background-color: #efeae2;
  margin: 0;
  text-align: center;
  width: 100%;
}

button {
  align-items: center;
  background-color: #efeae2;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.25rem;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0.85);
  cursor: pointer;
  display: inline-flex;
  font-family: "marigny", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  justify-content: center;
  line-height: 1.25;
  margin: 10px;
  min-height: 3rem;
  padding: calc(0.875rem - 1px) calc(1.5rem - 1px);
  position: relative;
  text-decoration: none;
  transition: all 250ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  width: auto;
}

button:hover,
button:focus {
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
  color: rgba(0, 0, 0, 0.65);
}

button:hover {
  transform: translateY(-1px);
}

button:active {
  background-color: #f0f0f1;
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
  color: rgba(0, 0, 0, 0.65);
  transform: translateY(0);
}

.coming {
  background-color: limegreen;
}

.not-coming {
  background-color: #efeae2;
}

.container {
  padding: 10px;
  background-color: #efeae2;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
  border-radius: 10px;
  width: 100%;
}

.subcontainer {
  max-width: 500px;
  margin: auto;
}

.bounce {
  animation: bounce 2s ease infinite;
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-2px);
  }
  60% {
    transform: translateY(-1px);
  }
}

.hithere {
  animation: hithere 1s ease infinite;
}
@keyframes hithere {
  30% {
    transform: scale(1.2);
  }
  40%,
  60% {
    transform: rotate(-20deg) scale(1.2);
  }
  50% {
    transform: rotate(20deg) scale(1.2);
  }
  70% {
    transform: rotate(0deg) scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.pulse {
  animation: pulse 1s infinite ease-in-out alternate;
}
@keyframes pulse {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

h1 {
  font-size: 1.5rem;
  margin-top: 40px;
}

h2 {
  font-size: 1rem;
}

p {
  font-size: 1rem;
  font-style: italic;
  margin-top: 10px;
}

.countdown {
  font-size: 1rem;
  font-style: italic;
  margin-top: 10px;
}

.message {
  margin-top: 10px;
  font-size: 1rem;
}

.map-links {
  width: fit-content;
  margin: 0 auto;
}

.map-link {
  display: flex;
  justify-content: left;
  align-items: left;
  margin-top: 20px;
}

.map-link a {
  text-decoration: none;
  color: #000000;
  font-size: 1rem;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
  font-style: italic;
}

.map-link a:hover {
  color: #ff6347;
}

.map-link img {
  margin-right: 10px;
  width: 25px;
  height: 25px;
  fill: #000000;
  transition: fill 0.3s ease;
}

.map-link a:hover img {
  fill: #ff6347;
}

.logo {
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}

.spacer {
  width: 1px;
  margin-bottom: 10px;
  margin-top: 10px;
  border-top: 1px solid #000000;
}

.timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: left;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  text-align: center;
  width: 80%;
  margin: auto;
  margin-right: auto;
}

.header {
  text-align: center;
  padding: 32px;
}

/* HTML: <div class="loader"></div> */
.loader {
  width: 60px;
  margin: auto;
  aspect-ratio: 4;
  background: radial-gradient(circle closest-side, #000 90%, #0000) 0 /
    calc(100% / 3) 100% space;
  clip-path: inset(0 100% 0 0);
  animation: l1 1s steps(4) infinite;
}
@keyframes l1 {
  to {
    clip-path: inset(0 -34% 0 0);
  }
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
