:root {
    --bg: #5e5c78;
    --text: #F4EFE4;
    --accent: #6B4A9A;
    --button: #E87812;
    --button-hover: #FF922E;
    --input: #35353C;
    --input-text: #F4EFE4;
    --danger: #bf616a;
}

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

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: var(--bg);
}

#game, .game {
    width: 100%;
    height: 100%;
    position: relative;
}

a {
    text-decoration: none;
}
