@font-face {
    font-family: 'League Spartan';
    src: url('../fonts/LeagueSpartan-VF.woff2') format('woff2-variations');
    font-weight: 200 900;
}
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

body{
    margin: 0;
    padding: 40px;
    --bleu : #0A1E26;
    --vert : #314033;
    --orange : #402921;
    background-color: var(--bleu);
    color: white;
    overflow: hidden;
    box-sizing: border-box;
    min-height: 100vh;
}

h1, h2, h3, h4, p, a, ul, li, figure, input, pre{
    font-family: 'League Spartan';
}

h1{
    font-size: 3em;
    font-weight: 700;
}

h2{
    font-size: 2em;
    font-weight: 500;
}

h3{
    font-size: 1.5em;
    font-weight: 500;
}

h4{
    font-size: 1.2em;
    font-weight: 400;
}

p, li{
    font-size: 1.2em;
    font-weight: 300;
}

a{
    color: white;
}

strong, .strong{
    font-weight: 500;
}

.centre{
    text-align: center;
}

.btn{
    display: block;
    width: fit-content;
    box-sizing: border-box;
    padding: 10px 20px;
    text-decoration: none;
    color: white;
    background-color: var(--bleu);
    box-shadow: black 3px 3px 5px;
    transition: all 0.3s ease;
    &:hover, .actif, [href="#"]{
        color: var(--bleu);
        background-color: white;
    }
    &.actif{
        color: var(--bleu);
        background-color: white;
    }
    &[href="#"]{
        color: var(--bleu);
        background-color: white;
    }
}

.btn-principal{
    font-size: 2em;
    font-weight: 900;
    box-shadow: none;
}

.btn-secondaire{
    font-size: 1.4em;
    font-weight: 500;
}

.opt{
    font-size: 1.4em;
    font-weight: 500;
    box-shadow: none;
}

.btn-rond{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 35px;
    font-size: 1.7em;
}

div.logos-iutmmi{
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
    img{
        height: 50px;
    }
}

body{
    scrollbar-color: white var(--bleu);
    scrollbar-width: thin;
}

@media (max-width: 600px) {
    div.logos-iutmmi{
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
}