.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px; 
    width: 174px;
    padding: 0 10px;
    background-image: url(../../assets/img/button.png);
    background-size: 100% 100%; 
    background-repeat: no-repeat;
    background-color: transparent; 
    color: #E0E0E0; 
    font-family: "Minecraft", sans-serif;
    font-size: 1rem;
    text-shadow: 2px 2px 0px #202020; 
    text-decoration: none;
    border: none;
    outline: none;
    cursor: pointer;
    image-rendering: pixelated;
}

.button:hover, .button:focus {
    background-image: url(../../assets/img/button_hover.png);
}

.button.icon {
    width: 50px;
    height: 50px;
    padding: 0; 
}

.button.icon span {
    filter: drop-shadow(2px 2px 0px #202020); 
}

.nav-arrows .arrow {
    position: relative;
    z-index: 5;
    background-color: transparent;
    border: none;
    cursor: pointer;
    image-rendering: pixelated;
    height: 30px;
}

.nav-arrows .arrow img {
    height: 100%;
}