@import url("https://fonts.googleapis.com/css2?family=Cactus+Classical+Serif&display=swap");

@font-face {
    font-family: "MinecraftRegular";
    src: url("./cdn/fonts/MinecraftRegular.otf");
}
@font-face {
    font-family: "MinecraftBold";
    src: url("./cdn/fonts/MinecraftBold.otf");
}

:root {
    --primary-color: #ececec;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    min-height: 100dvh;
    margin: 0;
    padding: 0;
    overflow: hidden;
    overscroll-behavior: none;
    background-color: #1a1a1a;
    font-family: MinecraftRegular, "Cactus Classical Serif", serif;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
    color: var(--primary-color);
}

.selection {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.selection-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;

    > li {
        background: url("./cdn/images/buttons/button.png") no-repeat center center;
        background-size: cover;
        text-align: center;
        justify-content: center;
        align-items: center;
        display: flex;
        font-size: 48px;
        transition: transform 0.2s ease-in-out;
        height: 64px;
        width: 640px;
        
        > a {
            text-decoration: none;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
    }

    > li:hover {
        background: url("./cdn/images/buttons/button_highlighted.png") no-repeat center center;
        background-size: cover;
    }
}


footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px;
    text-align: center;
    font-size: 14px;
    color: #525252;
}
