body {
    font-family: "Krona One", sans-serif;
    font-weight: 400;
    font-style: normal;
    position: relative;
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    background-color: #111;
    /* couleur de fond de base */
    overflow: hidden;
}

/* Pseudo-élément pour l’image de fond */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url('/imgs/take-me-back_background.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    animation: fadeInBg 20s ease-in-out forwards;
    z-index: -1;
    /* derrière le contenu */
}

@media screen and (max-width: 600px) {
    body::before {
        background-image: url('/imgs/take-me-back_background_mobile.jpg');
    }
}

/* Animation de fondu */
@keyframes fadeInBg {
    to {
        opacity: 1;
    }
}

.coming-soon {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(214, 184, 10, 0.85);
    font-size: 0.55rem;
    opacity: 0;
    animation: fadeInText 4s ease-in-out 20s forwards;
    text-shadow: 0 0 16px rgb(255, 232, 103);
    letter-spacing: 1px;
    width: 100%;
    text-align: center;   
}

@keyframes fadeInText {
    to {
        opacity: 1;
    }
}