body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;  /* Centre horizontalement */
    align-items: center;  /* Centre verticalement */
    height: 100vh;  /* Prend toute la hauteur de l'écran */
    margin: 0;  /* Enlève la marge par défaut du body */
    background-color: #C3CBD6;
}

.indexContainer {
    display: flex;
    flex-direction: column;
    background-color: #748B6F;
    border: solid black 1px;
    border-radius: 5px;
    box-shadow: 5px 5px 5px gray;
}

.titleIndex {
    width: 640px;
    text-align: center;
    color:#2A403D;
}

.app1 {
    padding: 5px;
    margin: 5px;
    text-align: center;
    background-color:#2A403D;
    border: solid black 1px;
    border-radius: 5px;
}