

 /* style  font  family  */ 
 @font-face {
    font-family: 'Creepster';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/creepster/v13/AlZy_zVUqJz4yMrniH4Rcn35.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }
  
/* Styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    display: flex;
    justify-content: left;
    align-items: center;
    background-color: #000; /* Fond noir */
    font-family: 'Creepster', cursive;
    color: #fff;
    background-color: #000;

    
                                                
    overflow: hidden;
    padding-left: 10%;
}

h1 {
    font-family: 'Creepster', cursive;
   
    
}


/* Conteneur principal */
.container {
    text-align: left;
}

h1 {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.759); /* Couleur sang */
    text-shadow: 2px 2px 10px rgba(56, 0, 0, 0.759); /* Effet lumineux de sang */
    margin-bottom: 20px;
    text-align: left;
}

/* Bouton START */
.start-button {
    font-size: 2rem;
    padding: 20px 40px;
    background-color: rgba(50, 50, 50, 0.759);
    color: #ffffff;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 3px;
    box-shadow: 0 0 15px rgba(7, 7, 7, 0.759), inset 0 0 5px #000000;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-left: 30%;
}

.start-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.759), inset 0 0 10px #fff;
}

/* Effet sanglant autour du bouton */
.start-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/old-wall.png');
    background-size: cover;
    opacity: 0.2;
    z-index: -1;
}

/* Effet de film d'horreur */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/cracks.png');
    background-size: cover;
    opacity: 0.1;
    z-index: -1;
}
