* {
	font-family: "Roboto", sans-serif;
	margin: 0;
	padding: 0;
	border: 0;
}

body {
	/*background: #020024;
	background: linear-gradient(90deg, #020024 0%, #090979 90%, #00d4ff 100%);
	background: linear-gradient(90deg, #b0f0ff 0%, #d0f2ff 80%, #e0ffff 100%);*/
	background: #eee;
}

.menu {
	z-index: 100;
	position: fixed;
	width: 100%;
	display: grid;
}

.menu > * {
	grid-column: 1;
	grid-row: 1;
}

.menu nav {
	z-index: 200;
	border: none;
	margin-top: 30px;
	background: #ffffff;
	padding: 8px;
	padding-left: 30px;
	box-shadow: 0 1px 3px 0 #555555;
}

.menu nav a {
	display: inline-block;
	border: none;
	background: #ffffff;
	box-shadow: 1px 1px 4px 0 #555555;
	margin-left: 8px;
	
	border-radius: 8px;
	padding: 8px;
	color: black;
	outline: none;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: blod;
	text-decoration: none;
	cursor: pointer;
}

.top-title {
	padding-top: 90px;
}

.background-img {
	width: 100%;
	position: relative;
	border: none;
	top: 0;
}

.cat {
	width: 50px;
	height: auto;
	transform: translate(45px, 12px);
}

.ears {
	width: 30px;
	height: auto;
}

.ear-1 {
	transform: translate(35px, -5px) rotateZ(-30deg);
}

.ear-2 {
	transform: translate(75px, -5px) rotateZ(30deg);
	animation: ear-move 15s infinite;
}