body {
    margin: 0;
    padding: 0;

    background-color: #c8c8c8;
    color: #400000;

    font-family: monospace;
    text-align: center;
          font-size: 15px;

    padding-top: 15vh;

}

a {
    color: #400000;
    text-decoration: none;
}

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

.navigation a {
    position: fixed;

    color: #400000;
    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 #400000;

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

    background-color: #c8c8c8;
    color: #400000;

    font-family: monospace;
}

.action-area {
    position: fixed;
    width: 75%;
    height: 65%;

    left: 50%;
    transform: translateX(-50%);

    display: grid;
    grid-template-columns: 1fr 1.5fr;

    border: 2px solid #400000;
    border-radius: 12.5px;
}



.visual-area {
    border-radius: 0 12.5px 12.5px 0;
    width: 100%;
    height: 100%;
    overflow: hidden;


}

.description-area {

    border-radius: 12.5px 0 0 12.5px;
    width: 100%;
    height: 100%;
    overflow: hidden;


}

.visual-area img {
    width: 100%;
    height: 100%;
    object-fit: fill;    
    border-radius: 0 12.5px 12.5px 0;
    overflow:hidden
}