
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;700&display=swap');

body {
  margin: 0;
  font-family: 'Ubuntu', sans-serif;
  background-color: #007B7F;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  padding: 20px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 0.5em;
}

p {
  font-size: 1.2rem;
  margin-bottom: 2em;
}

.countdown {
  display: flex;
  gap: 20px;
  font-size: 2rem;
  font-weight: bold;
}

.logo {
  height: 120px;
  margin-bottom: 20px;
  border-radius: 60px;
}

.countdown div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.label {
  font-size: 0.8rem;
  margin-top: 5px;
}

footer {
  position: absolute;
  bottom: 10px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.socials {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.socials img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
  transition: transform 0.2s;
}

.socials a:hover img {
  transform: scale(1.2);
}
