@font-face {
    font-family: 'Minecraft';
    src: url('https://mcbuttonslibcdn.pages.dev/Minecraft.ttf') format('truetype');
}

.mc-btn {
    image-rendering: pixelated;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    background-color: transparent;
    color: #E0E0E0;
    text-shadow: 2px 2px #3F3F3F;
    font-family: 'Minecraft', sans-serif;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    outline: none;
    user-select: none;
}

.btn-wide {
    width: 200px;
    height: 40px;
}

.btn-square {
    width: 40px;
    height: 40px;
}

.mc-btn:hover {
    color: #FFFFA0;
}

.mc-btn:active {
    transform: translateY(1px);
}