@import url('fonts/euclidcircular-medium.css');
@import url('fonts/euclidcircular-regular.css');
@import url('fonts/euclidcircular-semibold.css');
body {
  font-family: Euclid Circular, -apple-system, blinkmacsystemfont, Segoe UI, Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url('/images/bg.png');
    background-size: cover;
    color: #fff;
  }
  
  .container {
    text-align: center;
    width: 100%;
  }
  
  
  h1 {
    font-size: 46px;
    margin-top: 20px;
    text-transform: uppercase;
    margin-bottom: 0;
  }
  
  p {
    font-size: 18px;
    margin-top: 10px;
  }
  
  #countdown {
    font-size: 24px;
    margin-top: 20px;
  }

  .countdownwrap{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .countdownwrap p{
    display: flex;
    flex-direction: column;
    margin-right: 15px;
    width: 125px;
    height: 125px;
    border-radius: 50%;
    border: solid 1px #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .countdownwrap p:last-child{
    margin-right: 0;
  }

  .countdownwrap p span:first-child{
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 2px;
  }

  @media screen and (max-width:640px){
    body{
      padding: 0 10px;
    }
    h1{
      font-size: 24px;
    }
    p{
      font-size: 14px !important;
    }

    .countdownwrap p{
      width: 70px;
      height: 70px;
    }

    .countdownwrap p span:first-child{
      font-size: 16px;
    }
  }