body {
    margin: 0;
    background-color: black;
    color: rgb(8, 0, 255);
    font-family: Arial, sans-serif;
}

h1 {
    text-align: center;
    font-size: 95px;
    border: 5px solid rgb(8, 0, 255);
}

h2 {
    text-align: center;
    font-size: 28px;
}

h3 {
    text-align: center;
    font-size: 28px;
}

h4 {
    text-align: center;
    font-size: 28px;
}

h5 {
    text-align: center;
    font-size: 28px;
}

a {
    color: rgb(8, 0, 255);
    border: 3px solid rgb(8, 0, 255);
}

/* ================= HEADER ================= */

header {
    position: relative;
}

/* ================= GAMES ================= */

.games-navbar {

    display: flex;
    justify-content: left;
    gap: 20px;

    background: black;

    border-bottom: 5px solid rgb(8,0,255);
    border-left: 5px solid rgb(8,0,255);
    border-right: 5px solid rgb(8,0,255);

    max-height: 0;
    overflow: hidden;

    padding: 0;

    opacity: 0;

    transition:
        max-height .35s ease,
        opacity .35s ease,
        padding .35s ease;
}



.games-navbar.open {

    max-height: 100px;

    padding: 15px 0;

    opacity: 1;
}

/* ================= LIENS ================= */

.games-navbar a {

    color: rgb(8,0,255);

    text-decoration: none;

    border: 2px solid rgb(8,0,255);

    padding: 10px 20px;

    transition: .2s;
}

.games-navbar a:hover {

    background: rgb(8,0,255);

    color: black;

}

/* ========================= */
/* Bouton Games              */
/* ========================= */

.dropbtn {
    background: black;
    color: rgb(8, 0, 255);
    border: 3px solid rgb(8, 0, 255);

    padding: 10px 20px;
    font-size: 16px;
    font-family: inherit;

    cursor: pointer;
}

/* ========================= */
/* Liens                     */
/* ========================= */

.download-button {
    display: inline-block;

    color: rgb(8, 0, 255);
    text-decoration: none;

    border: 3px solid rgb(8, 0, 255);

    padding: 28px 50px;

    font-size: 28px;

    margin-top: 30px;

    transition: .2s;
}

.dropdown-content a {

    color: rgb(8,0,255);

    text-decoration: none;

    border: 2px solid rgb(8,0,255);

    padding: 10px 20px;

    transition: .2s;
}

.dropdown-content a:hover {

    background: rgb(8,0,255);
    color: black;

}


/* ========================= */
/* Animation                 */
/* ========================= */

/* Barre du haut */
nav {
    background-color: #000000;
    border-bottom: 4px solid rgb(8, 0, 255);
    padding: 15px;
    display: flex;
    justify-content: left;
    gap: 20px;
}

/* Boutons */
nav button {
    background-color: black;
    color: rgb(8, 0, 255);
    border: 3px solid rgb(8, 0, 255);
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
}

/* Animation quand la souris passe dessus */
nav button:hover {
    background-color: rgb(8, 0, 255);
    color: rgb(0, 0, 0);
    transition: 0.3s;
    font-size: 20px;
}

.nav-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    background-color: black;
    color: rgb(8, 0, 255);
    border: 3px solid rgb(8, 0, 255);

    padding: 10px 20px;

    text-decoration: none;
    cursor: pointer;
    font-size: 16px;

    transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

nav button:hover,
.nav-button:hover {
    background-color: rgb(8, 0, 255);
    color: black;
    transform: scale(1.08);
}

/* Contenu */
main {
    text-align: center;
    margin-top: 60px;
}

.logo {
    width: 180px;
    height: 60px;
    border: 3px solid rgb(8, 0, 255);
}

footer {
    background-color: #000000;
    border-top: 5px solid rgb(8, 0, 255);
    color: rgb(8, 0, 255);
    text-align: center;
    padding: 25px;
    margin-top: 80px;
}

.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: rgb(8, 0, 255);
    text-decoration: none;
    margin: 15px 15px;
    padding: 8px 15px;
    transition: 0.3s;
    border: 2px solid rgb(8, 0, 255);
}

.footer-links a:hover {
    color: rgb(8, 0, 255);
}

.games-navbar {
    position: absolute;
    width: 100%;
    z-index: 10;
}