@font-face {
	font-family: beton-font;
	src: url('../font/RU_Bebas Neue.ttf');
}
.bebas-neue-regular {
	font-family: beton-font, sans-serif;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 4px;
}

body {
	background-color: #444;
	margin: 0%;
}
.header {
	color: rgb(241,228,199);
	font-size: 4.5vw;
	text-align: center;
	user-select: none;
	background-color: rgba(0,0,0,0.5);
	padding: 1%;
}
.nav-cont {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
}
.nav-cont a {
	position: relative;
	width: 15%;
	transition: transform 0.5s;
}
.nav-cont a:hover {
	transform: scale(103%, 103%);
}
.nav-cont img {
	width: 100%;
	height: auto;
	border-style: solid;
	border-width: 5px;
	border-color: #000;
	border-radius: 5px;
	user-select: none;
}
.nav-cont a div {
	width: 100%;
	height: 40%;
	margin: 0%;
	background-color: rgba(0,0,0,0.5);
	position: absolute;
	top: 30%;
	left: 5px;
}
.nav-cont p {
	color: rgb(241,228,199);
	font-size: 3.5vw;
	text-align: center;
	margin: 10%;
	user-select: none;
}
