@import url('https://fonts.googleapis.com/css?family=Akira%20Expanded:700|Bebas%20Neue:400');
@font-face {
    font-family: 'Akira Expanded';
    src: url('font/AkiraExpanded-SuperBold.woff2') format('woff2'),
    url('font/AkiraExpanded-SuperBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
    --text: #c29b56;
    --background: #1c1c1c;
    --primary: #c29b56;
    --secondary: #4f6247;
    --accent: #80a387;
}

body {
    font-family: 'Bebas Neue';
    font-weight: 400;
    overflow: hidden;
}


h1, h2, h3, h4, h5 {
    font-family: 'Akira Expanded';
    font-weight: 700;
}

html {
    font-size: 100%;
    /* Définir la couleur d'arrière-plan */
    background-color: var(--background); /* Remplacez par votre couleur */

    /* Ajouter l'image d'arrière-plan */
    background-image: url('../img/logo_background.png'); /* Remplacez par le chemin de votre image */

    /* Définir la taille spécifique de l'image pour s'assurer que le logo a la même taille */
    background-size: auto 130%; /* Remplacez 100px par la hauteur réelle de votre logo */

    /* Positionner l'image pour que le haut soit visible et centré horizontalement */
    background-position: top center;

    /* Empêcher la répétition de l'image */
    background-repeat: no-repeat;
}

/* 16px */

h1 {
    font-size: 4.210rem; /* 67.36px */
}

h2 {
    font-size: 3.158rem; /* 50.56px */
}

h3 {
    font-size: 2.369rem; /* 37.92px */
}

h4 {
    font-size: 1.777rem; /* 28.48px */
}

h5 {
    font-size: 1.333rem; /* 21.28px */
}

small {
    font-size: 0.750rem; /* 12px */
}



.text {
    display: block;
    color: var(--text);
    width: 100%;
    text-align: center;
    padding-top: 25vh;
    align-items: center;

}

text h1 {
    margin: 0;
    padding: 0;
}

text img {
    width: 100%;
    max-width: 10vh;
    margin: 0 auto;

}

#timer {
    text-decoration: none;
    font-size: 3rem; /* 160px */
 }

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    color: var(--text);
    font-size: 0.750rem; /* 12px */
    padding-bottom: 1vh;
}
footer a {
    color: var(--text);
    text-decoration: none; !important;
}