@font-face {
	font-family: 'Bebas Neue';
	src: url('BebasNeue-Regular.woff2') format('woff2'),
		url('BebasNeue-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}


body {
	background-color: color(srgb 0.851 0 0);
	color: white;
	font-size: 20px;
	font-family: "Bebas Neue", Impact, Arial, sans-serif;
}

.hero {
	height: 100vh;

}

a {color:white; text-decoration: none;}
a:hover{color: white; text-decoration: underline;}

.hero img {
	max-width: 200px;
}
h1 {
	font-weight: bold;
	font-size: 30px;
}


.rotate {
	  animation: rotation 16s infinite linear;
	}
	
	@keyframes rotation {
	  from {
		transform: rotate(0deg);
	  }
	  to {
		transform: rotate(359deg);
	  }
	}