html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #f0f0f0;
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

header,
main,
footer {
  width: 100%;
  max-width: 600px;
}

#logo {
  width: 50%;
  max-width: 540px;
  height: auto;
  margin-bottom: 20px;
}

#countdown {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  font-size: 2em;
  border: 2px solid #ccc;
  padding: 20px;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.countdown-segment {
  text-align: center;
}

footer {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  #logo {
    width: 25vw;
  }
}