

@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

@font-face {
  font-family: "nunito";
  
}
@font-face {
  font-family: "puelque";
  src: url('https://evanstechlabs.com/CSS/fonts/Puelque.otf') format('otf');
}




body {
    margin: 0;
    font-family: "nunito";
    background-color: #2f2f2f;
    color: #F5F5F5;
    display: flex;
    flex-direction:initial;
    justify-content: center;
    align-items: center;
    height: 80vh;
  }
  
  .coming-soon-container {
    text-align: center;
    max-width: 800px;
    padding: 20px;
    margin: 10px auto;
  }
  
  h1 {
    font-family: "puelque";
    font-size: 6em;
    color:#2d37c8;
  }
  
  h2 {
    font-size: 2.5em;
    margin-bottom: 5;
  }
  
  p {
    font-family: "nunito", sans-serif;
    font-size: 1.2em;
    letter-spacing: 1px;
    line-height: 1.7em;
    margin-bottom: 6;
    color: #fbfcff;
  }
  
  .countdown {
    display: flex;
    justify-content: space-around;
    margin-bottom: 40px;
  }
  
  .countdown div {
    background-color: #0f0f89;
    padding: 10px;
    border-radius: 8px;
    width: 60px;
  }
  
  .countdown span {
    font-family: "puelque";
    font-size: 1.5em;
    display: block;
  }
  
  small {
    font-size: 0.8em;
  }
  
  .subscribe-form input {
    font-family: "nunito", sans-serif;
    padding: 10px;
    width: 65%;
    border: none;
    border-radius: 4px 0 0 4px;
  }
  
  .subscribe-form button {
    font-family: "nunito", sans-serif;
    padding: 10px;
    background-color: #1519fe;
    color: #F5F5F5;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .subscribe-form button:hover {
    background-color: #1d9c3d;
  }
  


p{
    font-family: "nunito", sans-serif;
    font-size: 1.1em;
    margin-bottom: 30px;
}

  footer {
    position: absolute;
    bottom: 20px;
    text-align: center;
    width: 100%;
    color: #e2e2ea;
    font-size: x-small;
  }
  
a {
    color: #e2e2ea;
    text-decoration: underline -.3em;
    letter-spacing: 1.5px;
    font-size: small;
    margin: 0 5px;
  }

  .footer-copyright {
    margin-top: 15px;
    color: #e2e2ea;

  }


  @media (max-width: 480px) {
    .countdown div {
      width: 50px;
      padding: 8px;
    }
  }
  