/* Import des variables globales */
@import url('variables.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: url("/img/bg.jpg"), rgba(106, 106, 106, 0.45);
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    background-position-y: 70%;
    height: 100vh;
    max-width: 100% !important;
    z-index: 100;
    margin: 0;
    font-family: Roboto, "Helvetica Neue", sans-serif;
}

nav {
    z-index: 500;
    width: 100%;
    background: black;
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 15%;
    list-style: none;
    padding: 25px;
}

nav ul li a.active {
    color: red;
}

.modal-box {
    width: 50% !important;
}

@media all and (max-width: 768px) {
    body {
        background-position-x: 75% !important;
        background-position-y: 60% !important;
    }

    .modal-box {
        width: 100% !important;
        line-height: 1.5rem !important;
        font-size: 13px !important;
    }
}