body {
	cursor: url('images/game-cursor.png'), auto;
	font-family: Space Grotesk;
	font-size: 20px;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
    align-items: center;
	background-repeat: no-repeat;
    background-position: center;
    background-size: 1280px 720px;
    background-color: black;
    overflow: hidden;
    min-height: 100vh;
    zoom: 90%;
}
a:hover, button:hover {
  cursor: url('images/game-cursor.png'), auto;
}
::selection {
  background: #692867; /* Background color of the highlight */
}
#middle-layer{
	position: fixed;
	width: 1280px;
	height: 720px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	z-index: 7;
}
#food{
	z-index: 1;	
	width: 1280px;     
    height: 720px;
    background-size: 1280px 720px;
}
.layer { 
    position: absolute;
}
/* Container for whole game */
.container { 
    width: 1280px; 
    height: 720px;
    margin: 0 auto; 
    display: flex;
    justify-content: center; 
    align-items: center;
    position: relative;
    overflow: hidden;
}
/* Buttons */
button {
	font-family: Space Grotesk;
    z-index: 1;
}
.start { /* For start button only */
	font-size: 18px;
    padding: 15px 30px;
    margin-top: 480px;
    background-color: black;
    border: 1px solid #E344E0;
    color: white;
    border-radius: 10px;
    position: relative;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: 1px;
    box-shadow:  0px 0px 32px #E344E0;
}
.options { /* For option buttons */
	font-size: 20px;
	background-color: #692867;
	border: 1px solid #E344E0;
	padding: 10px 25px;
	color: white;
	outline: none;
	border-radius: 5px;
}
.option-grid {
	display: grid;
	grid-template-columns: repeat(2, auto);
	gap: 10px;
	margin-top: 20px;
	margin-bottom: 20px;
	justify-content: center; 
}
.instruction-option-grid {
	margin-top: 20px;
	margin-bottom: 20px;
	margin-left: 301px;
	margin-right: 301px;
	justify-content: center; 

	font-size: 20px;
	background-color: #90909080;
	border: 1px solid white;
	box-sizing: border-box;
	padding: 10px 25px;
	color: white;
	outline: none;
	border-radius: 5px;
}
.instruction-option-grid:hover{
	border: 1px solid white;
	background-color: white;
	color: black;
	box-shadow:  0px 0px 32px white;
}
.next{
	font-size: 20px;
	background-color: #90909080;
	border: 1px solid white;
	box-sizing: border-box;
	padding: 10px 25px;
	color: white;
	outline: none;
	border-radius: 5px;
}
.next:hover{
	border: 1px solid white;
	background-color: white;
	color: black;
	box-shadow:  0px 0px 32px white;
}
button:hover{
	border: 1px solid #E344E0;
	background-color: #E344E0;
	color: white;
	box-shadow:  0px 0px 32px #E344E0;
}
#restart {
	position: absolute;
	top: 15px;
	left: 15px;
	z-index: 6;
}
#music {
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 6;
	cursor: pointer;
}
/* Text box containing script and options */
.laurie{
	color: #FF8863;
}
.barbara{
	color: #FFB0DE;
}
.juliette{
	color: #B4CF9E;
}
.textbox {
	text-align: center;
	position: absolute;
	margin-top: 420px;
	width: 700px;
	z-index: 20;
	background-color: black;
	color: white;
	padding: 20px;
	padding-bottom: 0px;
	border-radius: 10px;
	border: 1px solid #E344E0;
}

.hidden-box {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}
.hidden-box #text {
    display: none;
}