body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #f7f4ee; /* Fond doux style carnet de croquis */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

canvas {
    display: block;
    width: 100vw;
    height: 100vw;
}

/* Style simple pour superposer du texte sur ta 3D */
.ui-header {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #333333;
    pointer-events: none; /* Laisse passer les clics de la souris pour tourner la 3D */
}

.ui-header h1 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.ui-header p {
    margin: 5px 0 0 0;
    font-size: 1rem;
    color: #666666;
}