
:root {
    --color-violine-9: #624AF7;
    --color-violine-8: #7b66ff;
}

@font-face {
    font-family: Moderat;
    font-weight: 400;
    src: url(../fonts/Moderat-Regular.woff2);
}

@font-face {
    font-family: Moderat;
    font-weight: 700;
    src: url(../fonts/Moderat-Black.woff2)
}

@font-face {
    font-family: Transducer;
    font-weight: 700;
    src: url(../fonts/Transducer-Black.woff2);
}

/* Styles de base */
body, html {
    font-family: Moderat;
    background-color: var(--color-violine-9);
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1 {
    font-family: Transducer, Arial, sans-serif;
    margin: 0 0 8px 0;
    line-height: 35px;
}

strong {
    font-weight: 700;
}

p {
    padding-top: 16px;
    font-size: 16px;
    line-height: 21px;
    margin: 0;
}


.container {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
}


.content {
    width: 100vw;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.card {
    background-color: #ffffff;
    border-radius: 24px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: block;
    z-index: 1;
}

.illustration {
    position: absolute;
    top: 0;
    z-index: 0;
}

.primary-button {
    display: inline-block;
    border-radius: 30px;
    background-color: var(--color-violine-9);
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    margin: 24px 0 8px 0;
    padding: 14px 24px;
    line-height: 18px;
    word-wrap: break-word;
    text-decoration: none;
    margin-bottom: 0px;
}

.primary-button:hover {
    background-color: var(--color-violine-8);
}

.block {
    display: block;
}

.link-outlined {
    text-decoration: underline;
    font-weight: 700;
    color: black;
}

.link-outlined:hover {
    text-decoration: none;
}

.trustpilot-widget {
    padding: 40px 0;
    align-items: center;
}

@media (min-width: 480px) {
    .container {
        margin-top: 12px;
    }
    .header {
        margin: 48px 0 40px 0;
    }
    .illustration {
        width: 506px;
    }
    .card {
        padding: 40px;
        margin-top: 200px;
        max-width: 506px;
        min-width: 311px;
        width: 80%;
    }
}

@media (max-width: 479px) {
    p {
        margin: 0;
        padding: 8px 0 0 0;
    }
    .container {
        margin-top: 32px;
    }
    .header {
        margin: 32px 0 13px 0;
    }
    .illustration {
        width: 100vw;
    }
    .primary-button {
        display: block;
        margin: 24px 0;
    }
    .card {
        padding: 40px 16px;
        margin-top: 140px;
        width: 80%;
    }
}
