@font-face {
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    src: url();
}

body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 0;
    background-image: 'background.jpg';
}

.title {
    margin: 10px;
}

header {
    justify-content: center;
    align-items: center;
    display: flex;
    background-color: rgba(227, 227, 227, 0.6);
    height: 100px;
    z-index: 2;
}

.main {
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.box {
    background-color: rgba(227, 227, 227, 0.6);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    width: 50%;
    padding: 1%;
    margin: 2px;
    font-size: 200%;
}

.backgroundBox {
    height: 100%;
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
    background-image: url("Backgrounds/freedom.jpg");
    background-size: cover;
}

#background {
    position: relative;
    height: 100%;
    justify-self: center;
}

#nextHoliday {
    text-align: center;
}

@media only screen and (max-width: 600px) {
    .box {width: 90%;}
}

#timer {
    width: 95%;
    background-color: transparent;
    border-color: black;
    border-style: solid;
    border-width: 4px;
    height: 30px;
    z-index: 5;
    display: flex;
    padding: 3px;
    border-radius: 30px;
}

#bar {
    transition: width 1s ease-in-out;
    min-width: 30px;
    width: 30px;
    height: 100%;
    justify-self: left;
    align-self: center;
    background-color: white;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#percentage {
    font-size: 20px;
    opacity: 0; /* Cache le texte au début */
    transition: opacity 0.5s ease; /* Transition douce pour l'apparition du texte */
}

#RV {
    display: flex;
    justify-content: space-between;
}

#traineau {
    z-index: 3;
    height: 50px;
    position:relative;
    left: -25px;
    top: -15px;
    visibility: hidden;
}
