@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=Bebas+Neue&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Sofia+Sans+Condensed:ital,wght@0,1..1000;1,1..1000&display=swap");
h1 {
  color: #ff0c49;
  font-family: 'Archivo Black', sans-serif;
  display: block;
  margin-bottom: 9vh;
  text-align: center;
  font-size: 14vh;
}
body {
  font-family: 'Inter', sans-serif;
  font-weight: bold;
}
.countdown {
  font-family: 'Sofia Sans Condensed', sans-serif;
  font-weight: bold;
  font-size: 10vh;
  color: #ff0c49;
  text-align: center;
}
@media (max-width: 768px) {
  h1 {
    font-size: 10vw;
    margin-bottom: 5vw;
  }
  .countdown {
    font-size: 8vw;
  }
}
#info-toggle {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background: transparent;
  border: 1px solid #eee;
  color: #eee;
  padding: 2px 8px;
  font-size: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  cursor: pointer;
  border-radius: 2px;
  z-index: 100;
  outline: none;
  transition: all 0.2s ease;
}
#info-toggle:hover {
  border-color: #ccc;
  color: #ccc;
}
#info-card {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 70px;
  background: rgba(255,255,255,0.9);
  max-width: 50rem;
  border-radius: 3px;
  margin: 0 auto 15px auto;
  padding: 10px 20px;
  font-size: 11px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: #999;
  border: 1px solid #f0f0f0;
  z-index: 90;
}
#info-card.hidden {
  display: none;
}
#info-card p {
  margin: 4px 0;
}
