body {
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #282c34;
    color: white;
}

.countdown-container {
    text-align: center;
}

#timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 2rem;
    margin-top: 20px;
}

#timer div {
    background-color: #61dafb;
    padding: 20px;
    border-radius: 10px;
}

#timer span {
    font-weight: bold;
    font-size: 3rem;
}
footer {
    background-color: #282c34;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}
footer a {
    color: #ffa500;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
