body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #282c34;
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: white;
    background-image: url('../img/1.webp');
    background-size: cover;
}

.time {
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 100;
}

.container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: white;
    background-size: cover;
    overflow-x: hidden;
    width: 90%;
}

.time img {
    width: 600px;
}

h1 {
    top: 60%;
    padding: 20px 40px;
    color: white;
    font-size: 2rem;
    text-align: center;
    border-radius: 10px;
    filter: drop-shadow(0 0 10px #d040ac);
    text-shadow:
        0 0 10px #d040ac,
        0 0 20px #d040ac,
        0 0 30px #d040ac,
        0 0 40px #d040ac,
        0 0 50px #d040ac;
}

button {
    top: 70%;
    background-color: rgb(247, 201, 0);
    padding: 30px 50px;
    font-size: 20px;
    font-weight: 800;
    color: white;
    border: 0;
    border-radius: 100px;
    filter: drop-shadow(0 0 10px #d040ac);
    box-shadow:
        0 0 10px #d040ac,
        0 0 20px #d040ac,
        0 0 30px #d040ac,
}

@media screen and (max-width: 768px) {
    .container {
        width: 100vw !important;
    }
    body {
        background-size: 440vw;
        background-position-x: center;
    }

    .joker {
        width: 80%;
        top: 25%;
        left: -7% !important;
    }

    .logo {
        position: absolute;
        top: 10%;
        width: 250px;
    }

    #timer-text-1783101d6a439d029985dbfc4144e08e-minutes, #timer-text-1783101d6a439d029985dbfc4144e08e-secundes {
        text-shadow: 0px 0px 7px black;
        font-size: 16px !important;
    }

    .time {
        position: static;
        z-index: 100;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 90%;
        text-align: center;
        justify-content: center;
    }

    h1,
    button {
        position: relative;
    }

    .leo {
        top: 20%;
        width: 70%;
        right: -17% !important;
    }
}

.logo {
    position: absolute;
    top: 10%;
    width: 250px;
}

.flip-clock {
    display: flex;
    position: absolute;
    top: 21%;
    justify-content: center;
    width: 100%;
    gap: 70px;
}

.digit {
    font-size: 2rem;
    perspective: 1000px;
}

.flip-card {
    width: 150px;
    height: 190px;
    position: relative;
}

.leo {
    position: absolute;
    right: 4%;
}

.joker {
    position: absolute;
    left: 4%;
}

.flip-card-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 7.5rem;
    border: 2px solid #333;
    border-radius: 5px;
    background: #444;
}

.flip-card-front {
    transform: rotateX(0deg);
}

.flip-card-back {
    transform: rotateX(180deg);
}