
body{
/*  border: 3px solid purple;*/
  background-image: url('cessnaplanes.jpg');
  background-color: rgba(5,5,f,0.1);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
	width:95%;
  height:95%;
	padding:10px;
  margin: auto;
}

#header{
  /*  border:3px solid red;*/
  background-color: rgba(200, 200, 200, 0.2);
  position: fixed;
  left:0;
  top:0;
  width:100%;
}

#footer{
/*  border:3px solid red;*/
  background-color: rgba(200, 200, 200, 0.2);
  position: fixed;
  left: 0;
  bottom: 0;
  display:flex;
  justify-content: center;
  width:100%;
}

/*FOR VIDEO
#mainVideo{
	z-index: -1;
	position: fixed;
	right: 0;
	bottom: 0;
	min-height: 100%;
	min-width: 100%;
}*/

.dropdownMenu{
/*  border:3px solid green;*/
  width:100%;
  display:inline-flex;
  justify-content: center;
}

h1, p{
/*  border:3px solid white;*/
  text-align: center;
  font-family: Arial;
}

.dropbtn {
/*  border: 3px solid black;*/
  background-color: #0000ff;
  color: white;
  font-size: 16px;
  cursor: pointer;
  padding: 10px 20px;
/*  margin: 5%;*/
  min-width: 150px;
  transition: all .5s;
}

.dropdown {
/*  border:3px solid yellow;*/
  position: relative;
  display: inline-block;
  padding:10px;
  margin-left:auto;
  margin-right:auto;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #5555ff;
  opacity:85%;
  width:180px;
  box-shadow: 0px 8px 16px 5px rgba(0,0,0,0.5);
/*  transition: all 1s;*/
}

.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
	background-color: #9999ff;
  padding: 12px 24px;
	color: black;
  border:2px solid black;
  width:160px;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #7777ff;
  color: black;
  opacity:75%;
}

/*For re-configuring the dropdown buttons for phone or resizing the window*/
@media(max-width:700px){
  .dropdown:hover .dropdown-content{
    display:inline-block;
  }
}
@media(max-width:700px){
  .dropdownMenu{
    width:25%;
    display: block;
  }
}

/*Configuration for social media buttons in footer*/
.fa{
/*  display:inline-block;*/
  scale:150%;
  padding:20px;
  font-size: 50px;
  text-align: center;
  text-decoration: none;
  margin: 2em 2em;
  border-radius: 50%;
}

.fa-facebook{
  background: #3B5998;
  color: white;
  transition: all .5s;
}

.fa-youtube {
  background: #bb0000;
  color: white;
  transition: all .5s;
}

.fa-facebook:hover{
  background: white;
  color: #3b5998;
}

.fa-youtube:hover{
  background: white;
  color: #bb0000;
}
