body {
	background-color: pink;
}

#canvas {
	background-color: pink;
	/* border: 1px solid black; */
	width: 100%;
	height: 90%;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

#controls {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 10%;
	z-index: 1;
	text-align: center;
	vertical-align: middle;
}

#input {
	margin: 0;
	padding: 0.5rem;
	width: 80%;
	height: 2rem;
	font-size: 1.5rem;
	font-family: monospace;
	background-color: rgba(255, 255, 255, 0.25);
	outline: none;
	border: none;
	border-radius: 0.5rem;
	transition: all 0.3s ease;
}

#input:focus {
    background-color: rgba(255, 255, 255, 0.5);
    border-color: #ff69b4;
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.5);
}

#startScene {
	cursor: pointer;
	position: relative;
	font-size: 1.5rem;
	font-family: monospace;
	font-weight: normal;
	color: #990000;
	border: none;
	border-radius: 0.5rem;
	background-color: transparent;
}

#startScene:hover {
	font-weight: bold;
	box-shadow: -12px 12px 12px rgba(255, 105, 180, 0.25);
}

#startScene:hover::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -1rem;
    width: 0;
    height: 0;
    border-left: 1rem solid #990000; /* Triangle pointing right */
    border-top: 0.5rem solid transparent;
    border-bottom: 0.5rem solid transparent;
}

#loading-screen {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	font-family: sans-serif;
}