@import url('https://fonts.googleapis.com/css2?family=Passion+One:wght@400;700;900&display=swap');

.passion-one-regular {
    font-family: "Passion One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.passion-one-bold {
    font-family: "Passion One", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.passion-one-black {
    font-family: "Passion One", sans-serif;
    font-weight: 900;
    font-style: normal;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    margin: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.retour a {
    scale: 3;
    position: absolute;
    text-decoration: none;
    color: white;
    margin-top: -25%;
    margin-left: -32%;
    opacity: 0.6;
}

.retour a:hover {
    opacity: 1;
}


.bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Place l'image de fond derrière le contenu */
    

}

.bg img {
    height: 100%;
    width: 100%;
    object-fit: cover; /* Couvre toute la fenêtre */
}

.rules {
    scale: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

button {
    transform: scale(1);
    padding: 10px 10px;
    font-family: passion-one;
    font-size: 65px;

    z-index: 2;
    font-family: 'Passion One', sans-serif;
    background-color: transparent;
    color: #ffedc4;
    
    margin-top: 280%;
    margin-right: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0.7;
    transition: all ease-in 0.3s;
    width: 120px;
    height: 45px;
    filter: blur(2px);
}

button:hover {
    opacity: 1;
    filter: blur(0px);
    color: #ffffff;
}

.rules2 {
    margin-right: 17%;
}