/* =================== Général ==================== */
* {
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    display: flex;
    padding: 36px 20px 0 20px;
    flex-direction: column;
    align-items: center;
    margin: 0;
    background: var(--Mauve-fonce-3, #1E142B);
    min-height: 100%;
}

main {
    flex: 1;
    display: flex;
    width: 100%;
    max-width: 1420px;
    padding-bottom: 150px;
    flex-direction: column;
    align-items: center;
    gap: 150px;
}

.logo img {
    width: 60px;
    height: auto;
    margin-right: -7px;
    margin-left: -15px;
}

/* =================== Texte ==================== */
.logo h1 {
    font-family: Baskervville;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;

    background: linear-gradient(180deg, var(--Mauve-1, #5C3A87) 0%, #FFF 50.96%, var(--Mauve-1, #5C3A87) 86.54%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 0;

    color: #FFF;
    font-family: Baskervville;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

/* =================== Ligne ==================== */
.line {
    width: 100%;
    max-width: 1420px;
    height: 1px;

    background: var(--Text2, #8E93A1);
}

/* =================== Bouton/Badge ==================== */
.bouton {
    display: flex;
    padding: 8px 12px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-decoration: none;

    border-radius: 13px;
    background: #FFF;
    border: 1px solid #FFF;

    color: var(--Mauve-fonce-3, #1E142B);
    font-family: Baskervville;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;

    transition: background 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.bouton:hover {
    background: var(--Mauve-fonce-3, #1E142B);
    color: #FFF;
}

.badge {
    display: flex;
    padding: 8px 12px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 0;

    border-radius: 13px;
    background: #FFF;
    border: 1px solid #FFF;

    color: var(--Mauve-fonce-3, #1E142B);
    font-family: Baskervville;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}