* {
	margin: 0;
	padding: 0;
}

body{
	background:#ff0000;
}

b{
	color: #318adb;
}

button{
	cursor: pointer; 
	font-family: 'Rubik Bubbles';
	background-color: transparent; 
	border: 0px; 
	font-size: 70pt;
	color: white;
	margin-left: 3%;
	margin-top: 2%;
}
	button:hover{color: black;}

.fruit:hover {
	transform: scale(1.3);
}

.falling-mode{
	 transform: translateY(50%);
}

.dark-mode{
	filter: blur(5px);
}
.outline-mode{
	filter: grayscale(100%);
}

svg{
	position: absolute;
	margin-top: -52%;
	margin-left: 12%;
	width:87%;
}

p{
	font-family: 'Jost';
	font-size: 20pt;
	position: absolute;
	width:30vw;
	right: 20px;
	left:200px;
	padding-bottom:20px;
	}

nav{
	border-radius: 25px;
	cursor: s-resize; 
	overflow-y: scroll;
	position: fixed;
	left: -700px;
	height: 30vh;
	width: 620px;
	background-color: rgba(255,255,255,0.7);
	transition: 1s transform;
	padding: 20px 30px 20px 20px;
	z-index: 100;
	}

		.slide-drawer {
			transform: translateX(35vw);
		}