*{
	margin: 0;
	padding: 0;
	font-family: Century Gothic;
}

header{
	background-image:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url(../cover1.PNG);
	height: 100vh;
	object-fit: cover;
	background-size: cover;
	background-position: top;
}

ul{
	float: center;
	list-style-type: none;
}

ul li{
	display: inline-block;
	margin-top: 25px;
	margin-right: 20px;
	
}

ul li a{
	text-decoration: none;
	color: #fff;
	padding: 5px 20px;
	border: 1px solid transparent;
	transition: 0.6s ease;
	
}

ul li a:hover{
	background-color: yellow;
	color: #000;
}

ul li.active a{
    
	border-right: 3px solid yellow;
    
}

ul li.active2 a{
	border-right: 3px solid yellow;
}

ul li.active3 a{
	border-right: 3px solid yellow;
}


.main{
	max-width: 900px;
	margin: auto;
}

.title{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);

}

.title h1{
	color: #fff;
	font-size: 40px;
}

nav ul li ul li{
	display: list-item;	
	height: 4.0rem;
	position: relative;
}

nav ul li ul li a{
	text-decoration: none;
	color: black;
	padding: .5rem 0.5rem;
	border: .1rem solid transparent;
	transition: 0.6s ease;

}

nav ul li:hover ul li{
	display: list-item;
}





.navbar {
  overflow: hidden;
  background-color: #333;
  
}

.navbar a {
  float: left;
  font-size: 20px;
  color: white;
  text-align: center;
  padding: 20px 30px;
  text-decoration: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  cursor: pointer;
  font-size: 16px;  
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn, .dropbtn:focus {
  background-color: red;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.show {
  display: block;
}


@media(max-width: 998px){
	html{
		font-size: 60%;
	}
}
@media(max-width: 768px){
	html{
		font-size: 35%;
	}
}