/* styles.css */

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    background-size: cover;
    position: relative;
}

img {
    width: 200px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    display: none;
}

.container {
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    z-index: 2;
    position: relative;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

p {
    font-size: 1.2em;
    margin: 10px 0;
}

#countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

#countdown div {
    text-align: center;
}

#countdown span {
    display: block;
}

#countdown span:first-child {
    font-size: 2em;
    font-weight: bold;
}

button {
    width: 200px;
    padding: 10px;
    font-size: 20px;
    background-color: #0047AC;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 25px;
}

button a {
    text-decoration: none;
    color: #FFD301;
}

@media (max-width: 600px) {
    h1 {
        font-size: 2em;
    }

    p {
        font-size: 1em;
    }

    #countdown {
        flex-direction: column;
    }
}
