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

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f1f1f1;
  }
  
  .container {
    text-align: center;
    margin-top: 150px;
  }
  
  .logo {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    width: 200px;
  }
  
  .tagline {
    font-size: 24px;
    color: #555;
  }
  
  .description {
    font-size: 16px;
    color: #777;
    margin-top: -10px;
  }
  
  .countdown {
    margin-top: 50px;
  }
  
  .countdown-text {
    font-size: 18px;
    color: #888;
  }
  
  .timer {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-top: -10px;
  }
  
  .social a{
    font-size: 25px;
    margin-right: 30px;
    color: #222;
    transition: .3s;
  }

  .social a:last-child{
    margin: 0;
  }
  .social a:hover{
    opacity: .7;
  }