@import url("https://fonts.googleapis.com/css?family=Hammersmith+One|Russo+One|Staatliches&display=swap");

@keyframes fadein {
	0% {
		opacity: 0;
	}
	40% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

body {
	background-image: url(../img/background.png);
	background-size: cover;
	margin: 0vw;
	animation: fadein 1s;
}

::-webkit-scrollbar {
	width: 3px;
	background-color: rgba(255, 255, 255, 0.4);
}

::-webkit-scrollbar-thumb {
	background-color: #fff;
}

a {
	color: #046a38;
}

.menu {
	list-style-type: none;
	margin: 0vw;
	padding: 0vw;
	position: absolute;
	width: 80vw;
	height: 5vw;
	left: 20vw;
	line-height: 2vw;
}