/* Reset basique pour bien centrer */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial Black', sans-serif;
}

body {
    background-color: #1a1a1a; /* Fond sombre pour faire ressortir le carré */
}

.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Prend toute la hauteur de l'écran */
}

.work-box {
    background-color: #ffcc00; /* Jaune vif "travaux" */
    width: 400px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    border: 10px solid black; /* Bordure épaisse pour le style */
    box-shadow: 20px 20px 0px #555; /* Ombre décalée pour un look moderne */
}

h1 {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

p {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}