* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;

}

body {
    font-family: Poppins, sans-serif;
}

a {
    text-decoration: none;
    color: black;
    cursor: pointer;
}

.middle {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    gap: 40px;
    font-size: 25px;
}

.nav_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    padding: 20px 60px;
}

.buttonDiscord {
    background: #131313;
    color: #bcbcbc;
    padding: 14px 22px;
    border: 1px solid #000000;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;

    min-width: 200px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.buttonDiscord span {
    color: #ffffff;
}

.left {
    padding: 0 96px 0 0;
    cursor: pointer;
}

.left h1 {
    display: inline-block;
    transition: transform 0.5s ease;
}

.left h1:hover {
    transform: scale(1.1);
}


.middle a {
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
    color: #505050;
}

.middle a:hover {
    transform: translateY(-3px);
    color: black;
}

.right button {
    display: inline-block;
    transition: transform 0.3s ease;
}

.right button:hover {
    transform: scale(1.1);
}