*{
     margin: 0;
     padding: 0;
     font-family: Century Gothic;
}

body {
  background-image:linear-gradient(rgba(0,0,0,0.1),rgba(0,0,0,0.1)), url("image/wallpaper.jpg");
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.menu-bar{
  background: rgb(255,255,255);
  text-align: center;
}

.menu-bar ul{
  display: inline-flex;
  list-style: none;
  color: #000000;
}

.menu-bar ul li{
  width: 120px;
  margin: 5px;
  padding: 15px;
}

.menu-bar ul li a{
  text-decoration: none;
  color: #000000;
}

.active, .menu-bar ul li:hover{
  background-color: #D3D3D3;
  border-radius: 3px;
}

.sub-menu-1{
  display: none;
}

.menu-bar ul li:hover .sub-menu-1{
  display: block;
  position: absolute;
  background: rgb(255,255,255);
  margin-top: 15px;
  margin-left: -15px;
}

.menu-bar ul li:hover .sub-menu-1 ul{
  display: block;
  margin: 10px;

}


.menu-bar ul li:hover .sub-menu-1 ul li{
  width: 120px;
  padding: 10px;
  border-bottom: 1px dotted #fff;
  background: transparent;
  border-radius: 0;
  text-align: left;
}



.logo img{
	float: left;
	width:	140px;
	height: auto;
}

.main{
	max-width: 1300px;
	margin: auto;
}

.title{
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.title h1{
  color: #000000;
  font-size: 40px;
}

.title h2{
  color: #000000;
  font-size: 20px;
}

.title h3{
  color: #000000;
  font-size: 20px;
}
