*,
::before,
::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: "Akira";
    src: url(./font/akira.otf);
}

@font-face {
    font-family: "Calibri";
    src: url(./font/calibri-regular.ttf);
}

/* ----------------------------------------- */
/* BODY CSS */
body {
    background: url(/img/bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    font-family: "Calibri";
    color: white;
    width: 100%;
    height: 90vh;
}

/* ----------------------------------------- */
/* NAV CSS */
nav {
    width: 100%;
    height: 7vh;
    background: black;
}

ul {
    list-style-type: none;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 150px;
}

.item-nav,
a {
    text-decoration: none;
    color: white;
    transition: all ease 1s;
}

.item-nav:hover {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.788);
    text-decoration: underline;
}

/* ----------------------------------------- */
/* INDEX CSS */
main {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 50px;
}
.logo-discord{
    max-width: 150px;
}
h1 {
    font-family: "Akira";
    font-size: 40px;
}
p{
    text-align: center;
}
button{
    border: solid 1px white;
    background: transparent;
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    font-family: "Akira";
    transition: all ease 0.5s;
}
button:hover{
    border: white 1px solid;
    background: white;
    color: black;
}
footer{
    text-align: center;
    font-size: 10px;
}
/* ----------------------------------------- */
/* DOC CSS */
.pvp-cmd{
    margin: 30px;
}