body {
    margin: 0;
    padding: 0;

    background-color: black;
    color: white;

    font-family: monospace;
          font-size: 15px;

    text-align: center;
    padding-top: 15vh;


}

a {
    color: white;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: red;
}

.navigation a {
    position: fixed;

    color: white;
    text-decoration: none;

    font-family: monospace;
}

.navigation a:hover {
    color: #FF0000;
        text-decoration: underline;

}

/* TOP */

.nav-top-left {
    top: 20px;
    left: 35%;
}

.nav-top-right {
    top: 20px;
    right: 35%;
}


/* SIDES */

.nav-left {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.nav-right {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}


/* BOTTOM */

.nav-bottom-left {
    bottom: 100px;
    left: 35%;
}

.nav-bottom-right {
    bottom: 100px;
    right: 35%;
}




.hotbar {
    position: fixed;
    bottom: 20px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    flex-direction: row;
    gap: 5px;
}

.slot {
    width: 50px;
    height: 50px;

    border: 1.5px solid white;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: black;
    color: white;

    font-family: monospace;
}