body {
    margin: 0;

    background: #88bc7e;
    position: relative;
    overflow: hidden;

    font-size: 16px;
}

video {
    height: 100vh;
    width: 100vw;
    z-index: -1;
    position: fixed;
    top: 0;
    left: 0;
    object-fit: cover;
}

.barre {
    position: fixed;
    height: 100%;
    top: 0;
    left: 10px;
    z-index: 98;
}

.barre img, .barre-infos img {
    height: 100%;
    width: auto;
}

.barre-infos {
    position: fixed;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 99;
}

.carte-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 124.67px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 100px;
}

.carte-container img {
    width: 45%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    background: white;
    border: 2px solid black;
    padding: 10px;
}

.barre-verte {
    position: fixed;
    background: #128f0770;
    height: 124.67px;
    width: 100%;
    z-index: 97;
    bottom: 0;
    left: 0;
    padding-left: 100px;
    border-top: 3px solid black;

    display: flex;
    justify-content: center;
    align-items: center;

    column-gap: 20px;
}

.valide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.barre-verte p {
    margin: 0;
    color: white;
}

.texte {
    font-family: Helvetica, sans-serif;
    font-weight: 700;
    font-size: 36.67px;
}

#time {
    font-family: Helvetica, sans-serif;
    font-weight: 700;
    font-size: 67.33px;
}

#date {
    font-family: Helvetica, sans-serif;
    font-weight: 400;
    font-size: 32.67px;
}


@media only screen and (min-width: 1920px) {
    
    .carte-container img {
        width: auto;
    }

}