/* Personnalisation des styles */
::selection {
    background-color: var(--clr-accent);
    color: var(--clr-100);
}

.titre {
    font-family: var(--ff-alt);
    text-transform: uppercase;
    font-weight: 400;
    font-size: 4.5rem;
    &.hero {
        font-size: 11rem;
    }
    &.bigger {
        font-size: 5.75rem;
    }
    &.smaller {
        font-size: 2.75rem;
    }
    &.smallest {
        font-size: 2rem;
    }
    &.light, & .light {
        font-weight: 300;
    }
    &.bold, & .bold {
        font-weight: 500;
    }
}

.soustitre {
    font-family: var(--ff-alt-2);
    font-weight: 500;
    font-size: 1.5rem;
    &.smaller {
        font-size: 1.25rem;
    }
}

.titre.hero .soustitre {
    font-size: 5rem;
    font-weight: 400;
}

.bouton {
    --bg: var(--clr-text);
    -webkit-appearance: none;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    width: max-content;
    border: 1px solid var(--bg);
    background-color: var(--bg);
    color: var(--clr-100);
    text-decoration: none;
    font-family: var(--ff);
    font-weight: 400;
    letter-spacing: 1.5px;
    font-size: 1rem;
    text-transform: uppercase;
    padding: 1rem 2rem;
    transition: all .5s;
    &:hover {
        --bg: var(--clr-700);
    }
    &.invert {
        --bg: var(--clr-100);
        color: var(--clr-700);
        &:hover {
            --bg: var(--clr-300);
        }
    }
    &.accent {
        --bg: var(--clr-accent);
        color: var(--clr-100);
        &:hover {
            --bg: var(--clr-700);
        }
    }
    &.accent-bordered {
        --bg: var(--clr-100);
        border-color: var(--clr-accent);
        color: var(--clr-accent);
        &:hover {
            --bg: var(--clr-accent);
            border-color: var(--bg);
            color: var(--clr-100);
        }
    }
    &.secondary {
        border-width: 0 0 1px 0;
        background-color: transparent;
        padding-left: 0;
        padding-right: 0;
    }
}

/*1400*/

@media screen and (max-width: 87.5rem) {
}

/*1300*/

@media screen and (max-width: 81.25rem) {
}

/*1024*/

@media screen and (max-width: 64rem) {
}

/*856*/

@media screen and (max-width: 53.5rem) {
}

/*750*/

@media screen and (max-width: 46.875rem) {
}
