body {
    margin: 0;
    background-image: url("aboutbg.jpg");
    background-size: 1535px 750px;
    background-repeat: no-repeat;
}
.navbar {
    overflow: hidden;
	width: 100%;
    height: 80px;
    background-color: #1f1f1f;
}
.dropdown {
	float:left;
	overflow:hidden;
}
.dropdown .dropbtn {
	font-size: 20px;  
	border: none;
	outline: none;
	padding: 0px 0px;
	background-color: inherit;
	font-family: inherit;
	margin-top: 10px;
}
.dropdown-content {
  font-family: "MADE Evolve Sans Thin";
  display: none;
  position: absolute;
  background-color: #1f1f1f;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: yellow;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: green;
}

.dropdown:hover .dropdown-content {
  display: block;
}
.header1 {
    width: 100%;
    height: 10px;
}
.menu1 {
    height: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    list-style: none;
    padding: 15px 50px 100px;
}
.menu1 li a{
    text-decoration: none;
    font-family: "MADE Evolve Sans Thin";
    display: block;
    height: 100%;
    font-size: 16px;
    position: relative;
    color: yellow;
    text-transform: uppercase;
    transition: all 300ms cubic-bezier(0.075, 0.82, 0.165, 1);
    padding: 20px 30px 30px 30px;
    margin-right: 30px;
}
.menu1 li a:after,
.menu1 li a:before {
  content: "";
  position: absolute;
  display: block;
  border: 0px solid transparent;
  width: 0%;
  height: 0%;
  transition: all 0.3s ease;
}

.menu1 li a:after {
  width: 0%;
  height: 0%;
  top: 0;
  left: 0;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
}

.menu1 li a:before {
  width: 0%;
  height: 0%;
  right: 0;
  bottom: 0;
  border-bottom: 2px solid transparent;
  border-right: 2px solid transparent;
}

.menu1 li a:hover::before,
.menu1 li a:hover::after {
  width: 20px;
  height: 20px;
  border-color: #fff;
}
.logo {
    display: inline-block;
    height: 69px;
    margin-top: 5px;
    margin-right: 50px;
}
.title {
    font-family: "JerseyLetters";
    font-size: 90px;
    text-align: center;
}
.description {
    margin-left: 420px;
}