*{
	margin: 0;
	padding: 0;
	font-family: sans-serif;
}

body{
	background-color: #c7dfff;
}

h1.head{
	text-align: center;
	font-size: 36px;
	width: 100%;
	background-color: #c7dfff;
	height: 170px;
}

section{
	margin: 0;
	width: 100%;
	background-color: #69aaff;
}

table{
	border: none;
	font-size: 20px;
	color: black;
	width: 100%;
	margin-top: 120px;
	font-weight: 550;
	text-align: center;
}

table tr p{
	color: #fff;
	font-weight: 550;
	text-align: left;
}

table tr td{
	padding: 12px;
}


section.pdf object{
	width: 900px;
	height: 800px;
	border-radius: 30px;
	border-radius: none;
	color: green;
}

.pdfmission{
	background-color: #c7dfff;
	width: 100%;
	border-radius: 30px;
}

button.print{
	width: 70px;
	height: 30px;
	float: right;
	border: none;
	border-radius: 20%;
	background-color: lightgreen;
	cursor: pointer;
}

button.print:hover{
	background-color: darkgreen;
}


/*MENU CSS CODE IS HERE*/

*{
	margin: 0;
	padding: 0;
	font-family: sans-serif;
}


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: #000;
	padding: 10px;
	transition: 0.6s ease;
}

ul.menu-ul li a:hover{
	background-color: #000;
	color: #fff;
}
img.link{
	width: 50px;
	position: absolute;
	top: 50px;
	right: 50px;
	display: none;
}


.menu.mobile-menu{
	margin-left: 0;
}

div.logo img.logo-img{
	height: 170px;
	width: auto;
	float: left;
	position: absolute;
	top: 100px;
	left: 50%;
	border-radius: 50%;
}

ul li a.active{
	background-color: #fff;
	color: red;
	font-weight: 600;
}

@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;

	}

	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.logo img{
		margin-left: -100px;
	}

}
