* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
    /*z-index: 0;*/
}
body {
    height: 100vh;
    /*background: url('img/bg-nature.webp') no-repeat center center;*/
    /*background-size: cover;*/
}

li {
    list-style: none;
}

.avecstyle {
    list-style: disc;
}

a {
    text-decoration: none;
    color: gray;
    font-size: 1rem;
}

a:hover {
    color: black;
}

.links a {
    text-decoration: none;
    color: #D41A24;
    font-size: 1.2rem;
}

.links a:hover {
    color: ghostwhite;
}

header {
    position: relative;
    padding: 0 2rem;
    background-color: rgba(0,0,0,0.238) ;
}

.navbar {
    width: 100%;
    max-width: 1200px;
    height: 60px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #D41A24;
}

.navbar .links {
    display: flex;
    gap: 2rem;
    margin-top: 10px;
}

.navbar .burger-menu-button {
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.buttons {
    display: flex;
    gap: 1rem;
}

.action-button {
    background-color: #D41A24;
    color: #120d31;
    border: 1px solid;
    padding: 0.5rem 1.2rem;
    border-radius: 5px;
    outline: none;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
}

.admin {
    background-color: dimgray;
    color: #fff;
    border: 1px solid #fff;
}

.login {
    background-color: grey;
    color: #fff;
    border: 1px solid #fff;
}

.logout {
    background-color: grey;
    color: #fff;
    border: 1px solid #fff;
}
/* BURGER MENU */
.burger-menu {
    display: none;
    height: 0;
    position: absolute;
    right: 2rem;
    top: 60px;
    width: 220px;
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    overflow: hidden;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.burger-menu.open {
    height: 440px;
}

.burger-menu li {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider {
    height: 1px;
    background-color: #fff;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
}

.burger-menu .action-button {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.buttons-burger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.7rem;
}

small {
    color: grey;
}

.Alex {
    height : 400px;
}

.justifie {
    text-align: justify;
}

/* RESPONSIVE */
@media (max-width: 960px) {
    header {
        background: none;
    }
    .navbar .links,
    .navbar .action-button {
        display: none;
    }
    .navbar .burger-menu-button    {
        display: block;
    }
    .navbar .burger-menu-button span   {
        color: grey;
    }
    .burger-menu {
        display: block;
    }
}

@media (max-width: 550px) {
    .burger-menu {
        left: 2rem;
        width: unset;
    }
}

h1 {
    font-family: 'PlaywriteESDeco', 'New Century Schoolbook', 'TeX Gyre Schola', serif;
}

.container {
    display: flex;
}