@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;          
    
    text-decoration: none; 
    color: black;          
    font-family: 'crash test', sans-serif;
    font-size: 55px;
}

.power {
    position: fixed;       
    top: 70px;             
    left: 20px;            
    z-index: 100; 
    text-decoration: none; 
    color: black;          
    font-family: 'creato', sans-serif;
    font-size: 14px;

}

.contact {
            
    z-index: 100;          
    text-decoration: hi; 
    color: white;        
    font-family: 'creato', sans-serif;
    font-size: 15px;
    background-color: black;
}


body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden; 
}

a, button, input[type="submit"] {
    cursor: url('souris.png'), pointer;
}


*, html, body, input, textarea, a, button, label, span {
    cursor: url('souris.png'), auto !important;
}


.container {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center; 
    align-items: center;  
    background-image: url('bg.png');
    background-size: 100%;   
    animation: clignotement 0.1s ease-in-out infinite;
}


.cadre {
    width: 80%;
    height: 65%;
    max-width: 600px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.7);
    border-color: rgb(101, 21, 21);
    border-radius: 15px;
    box-shadow: 0 4px 10px rgb(101, 21, 21);
    text-align: center;
}



.groupe-champ {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
    width: 100%;
    padding-top: 30px;
}

.groupe-champ label {
    text-align: left;
    font-family: 'creato', sans-serif;
    color: rgb(0, 0, 0);
    font-weight: bold;
    margin-bottom: 8px;
    width: 100%;
}

.formulaire input[type="text"], 
.formulaire input[type="email"], 
.formulaire textarea {
    width: 100%;
    box-sizing: border-box;
    display: block;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgb(101, 21, 21);
    border-radius: 5px;
    padding: 10px;
    color: #333;
    font-size: 1rem;
    font-family: 'creato', sans-serif;
    cursor: url('souris.png'), auto;
}

.formulaire input:focus, 
.formulaire textarea:focus {
    background-color: rgba(255, 255, 255, 0.8);
    outline: none;
}

.formulaire textarea {
    height: 120px;
    resize: vertical;
}

.submit {
    font-family: 'creato', sans-serif;
    font-size: 15px;
    color: rgb(101, 21, 21);
    background-color: white;
    border: none;
}

@keyframes clignotement {
    0% {
        filter: brightness(0.95); /* Sombre (50% de luminosité) */
    }
    50% {
        filter: brightness(0.97); /* Plus clair (120% de luminosité) */
    }
    100% {
        filter: brightness(0.95); /* Retour au sombre */
    }
}
