html { 
  background: white url(images/.jpg) no-repeat; 
  background-position: center top;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  min-height: 100vh; 
  box-shadow: inset 0 0 200px #FFC9F2;
}

a {
  color: white;
  font-weight: bold;
}

/* mouse over link */
a:hover {
  color: hotpink;
  background: yellow;
    padding: 10px;

}

/* selected link */
a:active {
  color: black;
}

h1 {
  font-family: "Dela Gothic One", sans-serif;
  color: #00AEEF;
  font-size: 21px;
  line-height: 1;
  font-kerning: normal;
}

h2 {
  font-family: "Dela Gothic One", sans-serif;
  color: #00AEEF;
  font-size: 20px;
  line-height: 1;
  font-kerning: normal;
}

img.fullscreen {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

img.contact {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

img.menulogo {
  display: block;
  margin-left: 20;
  margin-right: 300;

}

video.fullscreen {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}


.button {
  border: none;
  color: white;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 20px 20px;
  transition-duration: 0.4s;
  cursor: pointer;
}

.contactbox {
  font-family: "Dela Gothic One", sans-serif;
  color: white;
  background-color: #00AEEF;
  text-align: center;
  padding:15px;

  border: none;
  position: center;
  
  font-family: "Dela Gothic One", sans-serif;
  color: white;
  font-size: 22px;
  line-height: 1;
  font-kerning: normal;
}



/* THE NAV MENU */ 

.dropbtn { 
  font-family: "Dela Gothic One", sans-serif;
  color: white;
  background-color: #00AEEF;
  text-align: center;
  padding:15px;
  font-size: 12px;
  letter-spacing: 4px;
  border: none;
  cursor: pointer;
  position: fixed;
  margin-right: 8px;
  right: 0;
}

.dropbtn:hover, .dropbtn:focus {

  background-color: #AF1256;
}

.dropdown {
  position: relative;
  display: inline-block;
  z-index: 100; 
  
}

.dropdown-content {
  font-family: "Dela Gothic One", sans-serif;
  display: none;
  background-color: #B61F61;
  min-width: 160px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  position: fixed;
  right: 0;
  margin-right: 8px;
  margin-top: 60px;
}

.dropdown-content a {
  color: white;
  padding: 20px;
  text-decoration: none;
  display: block;
  font-size: 10px;
  text-align: center;
}
.dropdown {
  margin: 8px;
  position: fixed;
  top: 0px;
  left: 0px;
}

.dropdown a:hover {background-color: #CB417D;}

.show {display: block;}

.menu-icon {
  position: Fixed;
  top: 0px;
  left: 0px;}
  




/* THE RESPONSIVE 4 COLUMN IMAGE GALLERY */ 

  
  .row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  padding: 0 0px;
}

/* Create four equal columns that sits next to each other */
.column {
  -ms-flex: 25%; /* IE10 */
  flex: 25%;
  max-width: 25%;
  padding: 0 0px;
}

.column img {
  margin-top: 0px;
  vertical-align: middle;
  width: 100%;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 1400px) {
  .column {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
  .column {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
}
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  