body {
    margin: 0;
    font-family: 'Source Sans Pro', sans-serif;
    user-select: none;
    overflow: hidden;
}

hr {
    width: 75%;
}

#loading-prompt {
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color: #111;
    color: #999;
    font-weight: bold;
    font-family: monospace;
    text-align: center;
    pointer-events: none;
    flex-direction: column;
}

#title {
    font-size: 48px;
    clip-path: inset(0 3ch 0 0);
    animation: title 1s steps(4, jump-none) infinite;
    position: relative;
    left: 1ch;
}

@keyframes title {
    to { clip-path: inset(0) }
}

#subtitle {
    font-size: 24px;
    font-weight: normal;
    margin-top: 10px;
}

#menu-button {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 20px;
    left: 20px;
    border-radius: 25%;
    background-color: #111;
    color: #999;
    border: solid 2px;
}

#menu-button:hover {
    cursor: pointer;
    background-color: #444;
}

.menu-kebab {
    position: absolute;
    width: 29px;
    height: 4px;
    background-color: #999;
    left: 9px;
    border-radius: 25%;
}

#menu {
    width: 200px;
    position: absolute;
    top: 80px;
    left: 20px;
    background-color: #111;
    color: #999;
    border: solid 2px;
}

.menu-element {
    padding: 5px 0 0 5px;
}

#notification {
	position: absolute;
	width: 300px;
	font-family: 'Arial';
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1000;
	background-color: white;
	color: black;
	font-size: large;
	box-sizing: border-box;
	padding: 8px;
	text-align: center;
}

#notification-message {
	margin-block: 0;
	text-align: justify;
}