@font-face {
    font-family: "crash test";
    src: url('Crashtestdummy.woff') format('woff'),
         url('Crashtestdummy.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "creato";
    src: url('CreatoDisplay-Regular.woff') format('woff'),
         url('CreatoDisplay-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}


.alexsachandra {
    position: fixed; top: 20px; left: 20px; z-index: 100;
    color: black;
    background-color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-family: 'crash test', sans-serif; font-size: 55px;
}

.power {
    position: fixed; top: 70px; left: 20px; z-index: 100;
    text-decoration: none; color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255, 0.9);
    font-family: 'creato', sans-serif; font-size: 14px;
}

/* --- Curseur (Appliqué partout) --- */
*, html, body, input, textarea, a, button, label, span {
    cursor: url('souris.png'), auto !important;
    animation: clignotement 0.1s ease-in-out infinite;
}

/* --- BASES SANS SCROLL --- */
html, body {
    height: 100%;
    overflow: hidden; 
    margin: 0;
    padding: 0;
}

.menu {
    position: absolute;
    top: 17%;
    left: 5%;
    width: 170px;
    background: rgb(255, 255, 255, 0.9); 
    padding: 5px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px; /* Espace entre les boutons */
    box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
}

.menu a {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    background: linear-gradient(to bottom, #ffffff, #dcdcdc); 
    color: black !important;
    text-decoration: none !important;
    font-family: 'creato', sans-serif;
    font-weight: bold;
    font-size: 12px;
    padding: 5px 7px;
    border: 1px solid #000000; 
    border-radius: 8px;
    transition: 0.2s;
}

/* Effet au survol (hover) comme sur l'image */
.menu a:hover {
    background: linear-gradient(to bottom, #dcdcdc, #bdbdbd);
    transform: translateY(-1px); /* Petit saut vers le haut */
}

/* Style pour la spirale */
.menu a span {
    font-size: 18px;
    filter: grayscale(100%); /* Rend l'emoji spirale gris */
}

.menu a:hover {
    color: #555 !important; /* Gris foncé au survol */
}


body {
    
    background-image: url(seamless.jpg);
    background-repeat: repeat;
    background-size: 200px;
    background-attachment: fixed;

    font-family: 'creato', sans-serif;
    display: flex;
    align-items: center; 
    justify-content: center;
}

/* --- LA GRANDE BOITE BLANCHE --- */
.boite {
    background: rgba(255, 255, 255, 0.9);
    width: 60%;
    height: 65%;
    position: relative; /* Indispensable pour placer les vidéos dedans */
    box-sizing: border-box;
    border-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 10px white;
}


.video1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; 
    aspect-ratio: 16 / 9;
}

.video1 iframe {
    width: 100%;
    height: 100%;
    border: none;
}

