@import url('https://fonts.googleapis.com/css?family=Roboto:700&display=swap');
*{
	padding: 0;
	margin: 0;
}
.wrapper{
	background: url(Images/Covid\ Home.jpg) no-repeat;
	background-size: cover;
	height: 100vh;
}
.navbar{
	position: fixed;
	height: 80px;
	width: 100%;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.6);
}
.navbar .logo{
	width: 140px;
	height: auto;
	padding: 9px 50px;
}
.navbar ul{
	float: right;
	margin-right: 20px;
}
.navbar ul li{
	list-style: none;
	margin: 0 8px;
	display: inline-block;
	line-height: 80px;
}
.navbar ul li a{
	font-size: 20px;
	font-family:"sans-serif";
	color: white;
	padding: 6px 13px;
	text-decoration: none;
	transition: .4s;
}
.navbar ul li a.active,
.navbar ul li a:hover{
	background:#910505;
	border-radius: 2px;
}
.wrapper .center{
	position: absolute;
	left: 50%;
	top: 55%;
	transform: translate(-50%, -50%);
	font-family: sans-serif;
	user-select: none;
}
.center h1{
	color: #910505;
	font-size: 40px;
	font-family:"sans-serif";
	text-transform: uppercase;
	width: 1000px;
	font-weight: bold;
	text-align:center;
}
.center h2{
	color:#091601ef;
	font-size:33px;
	font-family:"sans-serif";
	text-transform:uppercase;
	width: 1000px;
	font-weight:700%;
	text-align: center;
}
.buttons button{
	height:40px;
	width: 180px;
	font-size: 18px;
	font-weight: 600;
	color:rgb(233, 240, 234);
	background: rgb(17, 131, 51);
	outline: none;
	cursor: pointer;
	border: 1px solid #12ad39;
	border-radius: 25px;
	transition: .4s;	
}
.buttons .btn{
	margin-left: 400px;
	text-align: center;
}
.buttons button:hover{
	background: #084e06;
}
