:root {
    --mew-text-color: #000;
    --mew-white-color: #FFFFFF;
    --mew-accent-color: orange;
    --mew-stroke-color: #999999
}
*, ::after, ::before {
    box-sizing: border-box;
}
* {
    outline-color: var(--mew-accent-color);
}
html, body {
    margin: 0;
    padding: 0;
    height: 100vh;
    box-sizing: border-box;
    font-family: sans-serif;
}

#page-content {
    display: contents
}

.fill-block {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.mew-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    gap: 10px;
    height: 40px;
    background: var(--mew-accent-color);
    border-radius: 8px;
    color: var(--mew-white-color);
    border: none;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    text-decoration: none;
}
.mew-button:active {
    opacity: .8;
}
.mew-button.disabled {
    background: var(--mew-stroke-color);
}
.mew-button:disabled {
    background: var(--mew-stroke-color);
    cursor: default;
    pointer-events: none;
}
