*{
	margin: 0;
	padding: 0;
	font-family: sans-serif;
}

body{
	background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('back.jpg');
	height: 100vh;
	background-size: cover;
}

ul.menu-ul{
	list-style-type: none;
	float: right;
	display: inline-flex;
	margin: 10px;
}

ul.menu-ul li{
	padding: 10px;
}

ul.menu-ul li a{
	text-decoration: none;
	color: #fff;
	padding: 10px;
	transition: 0.6s ease;
}

ul.menu-ul li a.active{
	color: red;
	font-weight: 600;
	background-color: #fff;
}

ul.menu-ul li a:hover{
	background-color: #fff;
	color: #000;
}
img.link{
	width: 50px;
	position: absolute;
	top: 50px;
	right: 50px;
	display: none;
}


.menu.mobile-menu{
	margin-left: 0;
}


div.title h1{
	font-weight: 600;
	font-size: 36px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: yellow;
	text-align: center;
}


div.buttons {
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translate(-50%,-050%);
	text-decoration: none;
	color: #fff;
	font-size: 18px;
}

div.buttons a{
	text-decoration: none;
	color: #fff;
	border: 1px solid #fff;
	padding: 10px;
	transition: all 0.6s ease;
}

div.buttons a:hover{
	background-color: #fff;
	color: #000;
}



div.logo img.logo-img{
	height: 170px;
	width: auto;
	float: left;
	position: absolute;
	top: 20px;
	left: 20px;
	border-radius: 50%;
}

@media (max-width: 900px){
	ul.menu-ul{
		display: none;
	}

	img.link{
		display: block;
		font-weight: 600;
	}

	div.menu{
		top: 0;
		left: 0;
		position: absolute;
		background-color: rgba(255, 255, 255, 0.20);
		backdrop-filter: blur(8px);
		width: 100%;
		height: 100vh;
		display: flex;
		justify-content: center;
		align-items: center;
		margin-left: -100%;
		transition:  0.5s ease;

	}

	.close-h1{
		display: none;
	}

	ul.menu-ul{
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	ul.menu-ul li{
		margin: 25px 0;
		font-size: 1.2em;
		font-weight: 600;
	}

	div.buttons{
		position: absolute;
		top: 80%;
		left: 50%;
		transform: translate(-50%,-80%);
	}

	div.buttons a{
		display: block;
	}

}
