html {
    font-family: 'Default';
    color: white;
}
body {
    padding-top: 25px;
}
div {
    box-sizing: border-box;
}
::-webkit-scrollbar {
    width: 0px;
}
.title {
    text-align: center;
    font-size: 32px;
}
.exit-inventory {
    position: absolute;
    top: 10px;
    right: 10px;
}
.exit-inventory a {
    text-decoration: none;
    font-size: 32px;
    color: white;
    -webkit-transition: 0.25s;
}
.exit-inventory a:hover {
    color: var(--red);
    -webkit-transition: 0.25s;
}
.inventory {
    margin-top: 25px;
    margin-bottom: 25px;
}
.inventory-row {
    display: flex;
    width: 750px;
    margin: auto;
    border-top: 1px solid white;
    border-left: 1px solid white;
}
.inventory-grid {
    overflow: hidden;
    width: 125px;
    height: 125px;
    border-right: 1px solid white;
}
.label {
    padding: 5px;
    overflow: hidden;
    opacity: 0%;
    width: 125px;
    height: 125px;
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: 0.25s;
}
.label-text {
    flex: 0 0 125px;
}
.label:hover {
    opacity: 100%;
}