@font-face {
    font-family: "Kanit-ExtraBold";
    src: url(/asset/fonts/Kanit-ExtraBold.ttf);
}

body{
    font-family: "Tiny5", Verdana;
    background: #313639;
    min-height: 100vh;
    overflow-y: scroll;
    overflow-x: none;
    background: url(/asset/images/bg1.png) center/cover;
}

/* Css du menu */
.menu nav {
    border-radius: 10px;
    padding: 20px;
    backdrop-filter: blur(30px);
    width: fit-content;
}

.menu a {
    color: #ffffff;
    background-color: #333;
    transition: all 0.4s ease-out;
    border-radius: 5px;
    padding: 6px;
    Text-decoration: none;
    box-shadow: 0px 0px 30px rgba(227, 228, 237, 0.37);
    border: 2px solid rgba(255, 255, 255, 0.18);
}


.menu a.active {
    background-color: #98FB98; /* Couleur de fond pour l'élément actif */
    color: #333;
}
  
.menu a:hover,
.menu :focus {
    color: #333;
    background-color: #98FB98;
}

/* For Mobile Phones Portrait or Landscape View */
@media screen
  and (max-device-width: 640px){
    .menu nav {
        display: flex;
        border-radius: 10px;
        padding: 20px;
        backdrop-filter: blur(30px);
        width: fit-content;
    }
}

/* Css de la page adminLogin.html */
.login {
    overflow-y: none;
    display: flex;
    padding: 200px;
    backdrop-filter: blur(20px);
    border-radius: 30px;
    margin: 50px;
    justify-content: center;
    align-items: center; 
    border: #ffffff1c solid 1px;
}

.login input[type=text] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

.login input[type=text]:focus {
    border: none;
}

.login input[type=password] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

.login input[type=password]:focus {
    border: none;
}


input[type=submit] {
    background-color: #04AA6D;
    color: white;
    padding: 12px 20px;
    border: rgba(86, 250, 86, 0.068) solid 3px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    width: 130%;
}

.login input[type=submit]:hover {
    background-color: #45a049;
} 

/* Css de la page "index.html" */
.page1 h1 {
    color: #ffffff;
    text-align: left;
    margin-right: 150px;
}

.page1 .play button {
    outline: none;
    border: none;
    background-color: #98FB98;
    border-radius: 5px;
    transition: all 0.2s ease-out;
    height: 50px;
    width: 150px;
    margin-right: 10px;
}

.page1 .play button:hover {
    background-color: #79f879;
    box-shadow: 0 0 5px #79f879;
}

.page1 .info button {
    outline: none;
    border: none;
    background-color: white ;
    border-radius: 5px;
    transition: all 0.2s ease-out;
    height: 50px;
    width: 150px;
}

.page1 .info button:hover {
    background-color: #b4b4b4;
}

.page1 .button1 h2 {
    position: relative;
    bottom: 3px;
}

.page1 .button1 {
    display: flex;
    padding: 10px;
    backdrop-filter: blur(50px);
    border-radius: 10px;
    width: fit-content;
    
}

.page1 .serverinfo {
    color: #98FB98;
    text-align: right;
    margin-left: 150px;
}

@media screen and (max-width: 700px){
    .page1 .button1 {
        display: flex;
        padding: 10px;
    }
    .page1 h1 {
        margin-right: 160px;
    }
}

/* For Mobile Phones Portrait or Landscape View */
@media screen and (max-device-width: 640px){
    .page1 h1 {
        text-align: center;
        margin-right: 0px;
    }
    .page1  {
        align-items: center;
    }
}

/* Css de la page "about.html" */
.page2 h1 {
    color: #ffffff;
    text-align: left;
    margin-right: 150px;
}

.test {
    background-color: #fff;
    height: 3000;
}
