html,
body {
    background: #07110d;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin: 0;
    max-width: 100%;
    overflow-x: hidden;
    width: 100%;
}

* {
    box-sizing: border-box;
}

a,
.btn-link {
    color: inherit;
}

h1:focus {
    outline: none;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

.blazor-error-boundary {
    background: #b32121;
    color: white;
    padding: 1rem;
}

.blazor-error-boundary::after {
    content: "Une erreur est survenue.";
}

.darker-border-checkbox.form-check-input {
    border-color: #929292;
}

.form-floating > .form-control-plaintext::placeholder,
.form-floating > .form-control::placeholder {
    color: #69705b;
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder,
.form-floating > .form-control:focus::placeholder {
    text-align: start;
}

.content-section {
    background: #f4f0e8;
    color: #11150e;
    padding: 3rem clamp(1rem, 5vw, 5rem);
}

.section-heading {
    margin-bottom: 1.5rem;
    max-width: 760px;
}

.section-heading p {
    color: #6a6f3a;
    font-family: Impact, "Arial Narrow", sans-serif;
    letter-spacing: 0;
    margin: 0 0 0.45rem;
    text-transform: uppercase;
}

.section-heading h2 {
    color: #11150e;
    font-family: Impact, "Arial Narrow", sans-serif;
    font-size: 2.35rem;
    letter-spacing: 0;
    line-height: 1.02;
    margin: 0;
    text-transform: uppercase;
}

.content-grid {
    display: grid;
    gap: 1rem;
}

.content-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 980px) {
    .content-grid--three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .content-grid--three {
        grid-template-columns: 1fr;
    }

    .section-heading h2 {
        font-size: 1.9rem;
    }
}
