body {
    background-color: #000;
    color: #ff0040;
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    overflow-x: hidden;
}
#menu {
    position: fixed;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px #ff0040;
}
#burger-menu {
    font-size: 24px;
    cursor: pointer;
    color: #ff0040;
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
}
nav ul.hidden {
    display: block;
}
nav ul li {
    padding: 10px;
}
nav ul li a {
    color: #00ffff;
    text-decoration: none;
}
#music-toggle {
    background: transparent;
    border: 2px solid #ffcc00;
    color: #ffcc00;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}
#music-toggle:hover {
    background: #ffcc00;
    color: #000;
    box-shadow: 0 0 10px #ffcc00;
}

body {
    background-color: #000;
    color: #fbff00;
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    overflow-x: hidden;
}
#intro-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#enter-site {
    background: #ff0040;
    border: none;
    color: #000;
    padding: 15px 30px;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
}
#enter-site:hover {
    background: #ffcc00;
}
.hidden {
    display: none;
}

#background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(30px);
    z-index: -1;
}
#music-toggle {
    position: absolute;
    top: 10px;
    right: 10px;
}
#contact {
    display: inline-block; /* Adapte la taille au texte */
    width: auto; /* Ajuste la largeur au contenu */
    height: auto; /* Ajuste la hauteur au contenu */
    padding: 10px; /* Ajoute un peu d'espace autour du texte */
    position: relative; /* Assure que ça ne recouvre pas d'autres éléments */
    background: rgba(0, 0, 0, 0);
    color: white;
}
.centered-title {
    text-align: center;
    font-size: 2em;
    margin-top: 50px;
}

#projets {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.projet-card {
    cursor: pointer;
    padding: 15px;
    border: 2px solid #ff0040;
    display: inline-block;
    margin: 10px;
    transition: transform 0.2s;
}

.projet-card:hover {
    transform: scale(1.05);
}

#about {
    text-align: center; /* Centre tout le texte */
    max-width: 800px; /* Définit une largeur max pour éviter un texte trop étalé */
    margin: 0 auto; /* Centre la section horizontalement */
    padding: 20px;
}
#about h2 {
    font-size: 2em; /* Augmente légèrement la taille du titre */
    margin-bottom: 15px;
}
#about p {
    line-height: 1.6; /* Ajoute un peu d'espacement entre les lignes pour une meilleure lisibilité */
}
