body {
    position: relative;
    width: 100vw;
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.content {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 15px;
}
.logo {
    width: 200px;
    height: 200px;
    margin-bottom: 25px;
}
.countdown {
    /* @todo WIP: display none en attente de deadline */
    /* display: none; */
    color: #FFF;
    text-align: center;
    font-family: "Josefin Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}
h1 {
    margin: 0;
    color: #FFF;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 22px;
    text-transform: uppercase;
}
.description {
    margin: 0;
    color: #FFF;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px; 
}
.links-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.links-container a {
    color: #FFF;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 26px; 
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    cursor: pointer;
}
@media (min-width: 768px) {
    .logo {
        width: 326px;
        height: 326px;
    }
    .countdown {
        font-size: 22px;
    }
    h1 {
        font-size: 40px;
        line-height: 48px;
    }
}
