*,
::after,
::before {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0d6efd;
    /* Background color for the entire website, including individual sections */
    --secondary: #edfbfe;
    /* Default color used for the majority of the text content across the entire website */
    --dark: #0d1f1a;
    /* Color for headings, subheadings and title throughout the website */
    --success: #2f5d50;
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --white: #ffffff;
    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --light: #ede6e6;
    /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
    --danger: #f8d7da;
    --danger1: #f1aeb5;
    --danger-fonce: #58151c;
}

html {
    font-family: sans-serif;
    min-height: 100%;
    height: 100%
}



.body {
    background-color: var(--secondary);
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Centre horizontalement */
    align-items: center;
    /* Centre verticalement */
    min-height: 100vh;
}

.alert-danger {
    color: var(--danger-fonce);
    text-align: center;
    background-color: var(--danger);
    border: 1px solid var(--danger-fonce);
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
}

h1, h2, h3, h4, h5, h6 {
    text-align: center;
}