@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

body {
    font-family: "Roboto", sans-serif;
    background-color: #F8FAFC;
}

.secondary {
    color: #EAF7F6;
}

.main-color {
    color: #3AAFA9;
}

.accent {
    color: #E89AB7;
}

.darker-accent {
    color: #c85c8e;
}

.text {
    color: #243447
}

/* Reset minimal */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Conteneur plein écran */
.maintenance {
    width: 100%;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* Carte centrale */
.card {
    background-color: #EAF7F6;
    padding: 3rem 4rem;
    text-align: center;
    border-radius: 1.5rem;
    box-shadow: 0.5rem 0.5rem #E89AB7;
}

.card h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.card p {
    font-size: 1.2rem;
}