@import url('https://fonts.googleapis.com/css2?family=Potta+One&display=swap');

* {
    box-sizing: border-box;
}

body {
    background-image: url('/assets/img/kolase.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    font-family: 'Potta One', cursive;
    margin: 0;
    padding: 0;
}

h1 {
    color: white;
    font-weight: normal;
    font-size: 4rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.countdown-container {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}

.big-text {
    color: white;
    font-weight: bold;
    font-size: 6rem;
    line-height: 1;
    margin: 1rem 2rem;
}

.countdown-el {
    color: white;
    text-align: center;
}

.countdown-el span {
    font-size: 1.3rem;
}

.redirect-button {
    background-color: #ff5733;
    color: white;
    padding: 15px 30px;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-top: 2rem;
}

.redirect-button:hover {
    background-color: #ff3d00;
}

@media (max-width: 768px) {
    body {
        background-size: 150%;
    }

    .countdown-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        padding: 1rem 12px;
        margin: 0 auto;
        width: 100%;
        box-sizing: border-box;
        height: auto;
        min-height: 220px;
    }

    .big-text {
        font-size: 3rem;
        margin: 0.3rem 0.8rem;
    }

    .countdown-el span {
        font-size: 1rem;
    }

    .redirect-button {
        background-color: #ff5733;
        color: white;
        padding: 15px 30px;
        font-size: 1.2rem;
        border: none;
        cursor: pointer;
        border-radius: 5px;
        transition: background-color 0.3s ease;
        margin-top: 2rem;
    }

    .redirect-button:hover {
        background-color: #ff3d00;
    }

}