@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: grid;
  justify-content: center;
  min-height: 100vh;
  min-width: 100vw;
  background: #146f81;
  font-family: "Poppins", sans-serif;
}

.container {
    margin-top: 4rem;
    
}
.container > h1{
    color: white;
    text-align: center;
    text-transform: uppercase;
    font-size: 2rem;
}

.timer{
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}
.deadline-format{
    text-align: center;
    padding: 1rem 1rem;
    background: none;
    color: #d5d6aa;
    
}
.deadline-format h4{
    font-size: 2rem;
}

.deadline-format span{
    text-transform: uppercase;
    font-size: .9rem;
}

#footer-quote{
    color: #d5d6aa;
    text-align: center;
    margin-top: 3rem;
    letter-spacing: .4rem;
}

@media (max-width:700px){
   
    .container > h1{
        font-size: 1rem;
        margin-top: 9rem;
    }
    #footer-quote{
        font-size: .7rem;
        letter-spacing: .2rem;
    }
}
