@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");

html,
body {
  margin: 0;
  overflow: hidden;
  background-color: #11151c;
  font-family: "Open Sans", sans-serif;
  color: rgba(255, 255, 255, 0.5);
}

a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

a:hover {
  filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.9));
}

h1 {
  margin: 0 0 2rem 0;
  font-size: 2rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.title {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
}

.countdown {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.countdown-value {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.countdown-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.socials {
  position: fixed;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center; 
}

.icons{
  display: flex;
  gap: 10px;
  justify-content: center;
}

.icons a {
  transition: all 0.5s ease-in-out;
  transform: scale(1.5);
}

.icons a:hover {
  transform: scale(2);
  filter: drop-shadow(0px 0px 5px rgba(255, 255, 255, 1));
}

.links{
  font-size: 0.8rem;
}
