.body_index {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Hauteur de la vue � 100% pour centrer verticalement */
    color: #ffffff;
    background-color:rgb(32, 31, 31);
    font-family: 'Nimbus Mono PS'
}

.bottom-right {
    position: absolute;
    bottom: 0;
    right: 0;
}

.top-right {
    position: absolute;
    top: 0;
    right: 0;
}


.pianoZone {
    border: 2px solid #2a2a2d;
    width: 60%;
    height: fit-content;
    position: relative;
    top: 315px;
    margin-bottom: 90px; 
    box-sizing: border-box; 
}

.input {
    background: transparent;
    color: white;
    border: 2px dashed white;
    margin-right: 10px;
    text-indent: 3px;
    outline: none;
}

.input-submit {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.footer {
    border-top: 1px solid darkgrey;
    padding-top: 20px;
    padding-left: 5px;
    padding-right: 5px;
    color: gray;
    position: fixed;
    left: 0;
    bottom: 20px;
}


.header {
    position: fixed;
    top: 20px;
}


.error-message {
    background-color: #fce4e4;
    border: 1px solid #fcc2c3;
    float: left;
    padding: 20px 30px;
    color: #cc0033;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: bold;
    line-height: 2px;
    text-shadow: 1px 1px rgba(250,250,250,.3);
    text-align: center;
    bottom: 50px;
    position: fixed;
    top: 0;
    right: 10px;
    height: fit-content;
}

.notif-message {
    background-color: #fce4e4;
    border: 1px solid #cffcc2;
    float: left;
    padding: 20px 30px;
    color: #e0830a;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: bold;
    line-height: 2px;
    text-shadow: 1px 1px rgba(250,250,250,.3);
    text-align: center;
    bottom: 50px;
    position: fixed;
    top: 0;
    right: 10px;
    height: fit-content;
}

.videos-container {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap to the next line */
}

.videos-container img {
    max-width: 100%; /* Ensure images don't exceed container width */
    margin: 5px; /* Add spacing between images */
}

.video-with-title {
    width: 480px; /* Définir une largeur fixe pour chaque élément */
    margin: 5px; /* Ajouter un espacement entre les éléments */
    text-align: center; /* Centrer le texte */
}