@font-face {
    font-family: pokemon;
    src: url(./fonts/pokemon-pixel.ttf);
}

* {
    font-family: pokemon, serif;
}

body {
    overflow-x: hidden;
    font-family: pokemon, serif;
    width: 98vw;
    min-height: 97vh;
    background-color: #387595;
    display: flex;
    flex-direction: column;
}

#main-container {
    display: flex;
    flex-direction: column;
    align-items: center;

}


/*----------------------------------------------
Header
----------------------------------------------*/
header {
    width: 100%;
    margin-bottom: 20px;
    height: 7%;
}

nav {
    display: flex;
    justify-content: center;
    flex-direction: row;
}

.menu-item {
    text-decoration: none;
    color: black;
    width: 20%;
    border: 1px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: background-color, 0.5s;
}

.menu-item:not(#logo, #profile):hover {
    transition: background-color, 0.5s;
    background-color: white;
}

#profile:hover {
    scale: 1.05;
    transform: rotate(360deg);

}

#profile {
    width: 5%;
    border: none;
}

#profile > img {
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
}

#logo {
    border: none;
    padding: 20px;
}

#logo > img {
    width: 100%;
}




/*----------------------------------------------
Footer
----------------------------------------------*/
footer {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    position: static;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    z-index: 1;
}

#footer {
    border-top: 1px solid black;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    position: static;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    z-index: 1;
}


.logoInsta {
    padding-right: 15px;
    width: 70%;
}

#discord.logoInsta {
    width: 40%;
}

#copyright {
    color: #ffffff;
    padding-left: 30px;
    text-align: left;
    width: 400%;
}


.noBord {
    border-top: none;
    transition: 1s;
}




#logout-btn, #release-btn {
    position: absolute;
    display: none;
    z-index: 1000;
    padding: 6px 11px;
    background-color: #4c4848;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#logout-btn:hover, #release-btn:hover {
    outline: 1px solid white; /* Ajoute un espace entre le contenu et la bordure */
    outline-offset: -5px;
    background-color: #333333;
    transition: background-color 0.5s;
}

#logout-btn:active, #release-btn:active {
    color: red;
    background-color: white;
}
