body {
  background-color: black;
  font-family: Arial, sans-serif;
  color: white;
  text-align: center;
}

#mainsection{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

h1 {
  font-size: 60px;
  font-weight: bold;
}

#countdown {
  font-size: 60px;
  margin-top: 20px;
}

.social-media {
  margin-top: 2rem;
  line-height: 0;
}

.social-media a {
  font-size: 0;
}

.social-media img {
  padding: 1rem;
  height: 80px;
  width: 80px;
  transition: transform 0.3s ease;
}

.social-media img:hover {
  transform: scale(1.1);
}


/* Media Query for Mobile Screens */
@media (max-width: 480px) {

  body{
    color: red;
  }

  h1 {
    font-size: 60px;
  }

  #countdown {
    font-size: 63px;
    margin-top: 10px;
  }

  .social-media {
    margin-top: 1rem;
  }

  .social-media img {
    height: 60px;
    width: 60px;
    padding: 0.5rem;
  }
}
