*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #161719;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 5%;
}
h1 { 
    color: grey; 
    font-size: 3rem; 
    margin-bottom: 50px; 
}
.countdown { 
    display: flex; 
    gap: 10px; 
}
.unit { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
}
.value {
    background: #212224;
    font-size: 3rem;
    font-weight: bold;
    padding: 2rem 1rem;
    border-radius: 10px;
    min-width: 80px;
    font-family: 'Courier New', Courier, monospace;

}
label { 
    margin-top: 10px; 
    color: grey; 
}
@media(max-width:1024px){
    h1 { font-size: 2rem; }
    .value { font-size: 2rem; padding: 1.5rem; }
}
