@font-face {
    font-family: "fraunces";
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
    src: url("font/fraunces.woff2") format("woff2 supports variations"),
         url("font/fraunces.woff2") format("woff2-variations");
}

.fraunces {
    font-variation-settings: "opsz" var(--fraunces-opsz, 9), "wght" var(--fraunces-wght, 900), "SOFT" var(--fraunces-SOFT, 0), "WONK" var(--fraunces-WONK, 1);
}

@font-face {
    font-family: "fraunces";
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
    src: url("font/fraunces-italic.woff2") format(woff2) tech(variations),
         url("font/fraunces-italic.woff2") format("woff2-variations");
}

.fraunces {
    font-variation-settings: "opsz" var(--fraunces-opsz, 9), "wght" var(--fraunces-wght, 900), "SOFT" var(--fraunces-SOFT, 0), "WONK" var(--fraunces-WONK, 1);
} 

@font-face{
  font-family: "Oswald";
  src: url("font/oswald/Oswald-VariableFont_wght.ttf") format("truetype");
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}

.oswald {
  font-variation-settings: "wght" var(--oswald-wght);
}

html{
    scroll-behavior: smooth;
    background-color: rgb(76, 5, 5);
}

.titre{
    height: 100vh;
    margin: 0;
    font-family: "fraunces";
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 600%;
    background-image: url(image/fond1.jpg);
    background-size: cover;
}

#bas{
    color:rgb(76, 5, 5) ;
    text-decoration: none;
    transition: color 0.3s ease;
}
#bas:hover,
#bas:focus-visible {
    color: #a7a0ab;
}

.char {
    /* La variable CSS --delay utilise la variable CSS --index, définie dans le HTML */
    --delay: calc((var(--index) + 1) * 200ms); 
    animation: caution 4000ms infinite both;
    animation-delay: var(--delay);
}
@keyframes caution {
    0% { font-variation-settings: 'wght' 100, 'wdth' 85; }
    60% { font-variation-settings: 'wght' 700, 'wdth' 100; }
    100% { font-variation-settings: 'wght' 100, 'wdth' 85; }
}


#groupe{
    color: white;
    font-size: 20px;
    font-family: "Oswald";
    padding-top: 150px;
    padding-bottom: 150px;
}

.tilt{
    display: flex;
    gap: 20px 40px;
    gap: 20px;
}


time{
    color: #aba7a0;
    width: 20%;
    margin-left: 20%;
 align-content:center ;

}


p{
    width: 45%;
}

.ligne{
    width: 80%;
    height: 1px;
    border: 0 none;
    margin-right: auto;
    margin-left: auto;
    margin-top: 50px;
    margin-bottom: 50px;
    background-color: rgb(255, 255, 255);
}

#haut{
    color: rgb(255, 255, 255);
    display: flex;
    margin: 5%;
    margin-top: 0;
    text-decoration: none;
    font-size: 50px;
    transition: color 0.3s ease;
    justify-content: center;
}

#haut:hover{
    color: #a7a0ab;     
}