@import url('https://fonts.googleapis.com/css2?family=SF+Pro+Display:wght@400;700&display=swap');

body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #f5f5f7;
    font-family: 'SF Pro Display', sans-serif;
    text-align: center;
}

.container {
    font-weight: 700;
    color: #333;
}

h1 {
    font-size: 64px;
}

h2 {
    font-size:120px;
}
a, a:visited {
    color: #0A84FF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.countdown {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.time {
    display: flex;
    flex-direction: column;
    margin: 0 10px;
    font-size: 140px;
    font-weight: bold;
    color: #333;
}

.time span {
    font-size: 40px;
    color: black;
}

small {
    font-size: 14px;
    color: gray;
}

#message {
    font-size: 28px;
    font-weight: bold;
    color: #0071e3;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hidden {
    display: none;
}

#conditions {
    text-transform: capitalize;
}