* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: #111;
    color: white;

    font-family: 'Questrial', 'Noto Color Emoji', sans-serif;

    user-select: none;
}

body,
html {
    height: 100%;
}

main {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hidden {
    display: none !important;
}

#context-menu {
    position: absolute;
    z-index: 1000;
    top: 0;
    left: 0;

    width: fit-content;
    height: fit-content;

    display: flex;
    flex-direction: column;
    gap: 5px;

    padding: 5px;

    background-color: #000000aa;
    border-radius: 5px;
}

.context-menu-header {
    margin: 0;
    text-align: center;
    font-size: 18px;
}

.context-menu-button {
    background-color: #dddddd;

    padding: 5px;

    border: none;
    border-radius: 2px;

    color: black;
    font-size: 12px;

    transition: background-color 0.2s ease-in-out;

    &:hover {
        background-color: #ffffff;
    }
}