* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #333;
    font-family: TT-Octosquares-Trial-Bold;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(images/Accueil.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    filter: blur(5px);
    z-index: -1;
}


@font-face {
    font-family: ethnocentric-rg-it;
    src: url(Font/ethnocentric-rg-it.woff);
    font-weight: bold;
}

@font-face {
    font-family: Dune_Rise_1;
    src: url(Font/Dune_Rise_1.woff);
    font-weight: bold;
}

@font-face {
    font-family: TT-Octosquares-Trial-Bold;
    src: url(Font/TT-Octosquares-Trial-Bold.woff);
    font-weight: bold;
}


/***********************************/

.warning {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background: #333;
    padding: 3%;
    margin: 3%;
    font-size: x-large;
    text-align: center;
}

.box {
    text-align: center;
    background: white;
    border: black solid 5px;
    border-radius: 5px;
    padding: 1% 3% 1% 3%;

}

h1 {
    font-family: ethnocentric-rg-it;
    font-size: 5rem;
    color: #26caf8;
}

button {
    font-family: TT-Octosquares-Trial-Bold;
    width: 300px    ;
    background: transparent;
    border: rgb(0, 0, 0) solid 3px;
    color: rgb(255, 255, 255);
    margin-top: 10px;
    /* Ajout de marge en haut */
    padding: 10px 20px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    font-size: 1.5rem;
    transition: all .2s;
    z-index: 2;

}

button::after {
    content: "";
    width: 600px;
    height: 600px;
    background: linear-gradient(225deg, #27d86c 0%, #26caf8 50%, #c625d0 100%);
    position: absolute;
    top: -40px;
    left: -140px;
    z-index: -1;
    transition: all .5s;
}

button:hover::after {
    transform: rotate(150deg);
}

button:hover {
    transform: translate(0, -6px);
    box-shadow: 10px -10px 25px 0 rgba(143, 64, 248, .50), -10px 10px 25px 0 rgba(39, 200, 255, .50);
}

.img {
    display: flex;
    justify-content: space-between; 
    align-items: center;
}

img{
    width: 20%;
}