/* Reset de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Rubik;
    background-color: black; /* Couleur de fond */
}

/* Conteneur principal */
.container {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}