/*Body Design*/
.active {
     background-color: #e4e5f2;
}

body {
    background-color:#fcf4eb;
    margin-left: 15%;
    margin-right: 15%;
}

header h1 {
    background-color: #e4e5f2;
    font-family: "reenie-beanie", sans-serif;
    font-size: 100px;
    color: #62b5aa;
    line-height: 90px;
    padding: 20px; 
    text-align: center;
}

header h2 { 
    font-family: "quicksand", sans-serif;
    font-size: 60px;
    line-height: 50px;
    color: #7d7d80;
    text-align: center;
}

h1 {
    line-height: 50px;
    font-family: "quicksand", sans-serif;
    font-size: 35px;
    color: #3a3a3b;
    text-align: center;
}

p {
    color:#959596;
    font-family: "eb-garamond", serif;
    font-size: 20px;
    line-height: 25px;
    text-align: center;
}


/* Top Navigation Design*/
header li { 
    display: inline;
    text-align: center;
}

header li a {
    color: #7d7d80;
    text-align: center;
    text-decoration: none;
    padding: 10px;
}

header li a:hover {
    background-color: #e4e5f2;
    padding: 15px;
}

header ul {
    background-color: #faecdc;
    font-size: 25px;
    font-family: "quicksand", sans-serif;
    list-style-type: none;
    margin: 25px;
    padding: 10px;
    overflow: hidden;
    text-align: center;
}

/* Page Navigation*/
.pagenav li { 
    display: inline;
    text-align: center;
}

.pagenav li a {
    color: #7d7d80;
    text-align: center;
    text-decoration: none;
    padding: 10px;
}

.pagenav li a:hover {
    background-color: #e4e5f2;
    padding: 15px;
}

.pagenav ul {
    background-color: #faecdc;
    background-attachment: fixed;
    font-size: 20px;
    font-family: "quicksand", sans-serif;
    list-style-type: none;
    margin: 25px;
    padding: 10px;
    overflow: hidden;
    text-align: center;
}


/*Image Gallery Design*/
.column {
    flex: 25%;
    max-width: 35%;
    padding: 1%;
}

.column img {
    margin-top: 2%;
    vertical-align: middle;
    width: 100%;
}

.row {
    display: flex;
    flex-wrap: wrap;
    padding: 2%;
}

.zoom {
    padding: 1%;
    transition: transform .7s;
    width: auto;
    height: auto;
}

.zoom:hover {
    transform: scale(1.3);
}


/*Videos*/
iframe {
    width: 600px;
    height: 338px;
}

.videos {
    width: 600px;
    height:338px;
    margin-left: auto;
    margin-right: auto;
}


/*Lightbox Design*/
.active,
.demo:hover {
  opacity: 1;
}

.close {
  color: white;
  position: absolute;
  top: 2%;
  right: 3%;
  font-size: 3vw;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2%;
    padding-top: 5%;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: black;
}

.modal-content {
    position: relative;
    background-color: #000000;
    margin: auto;
    max-height: 90%;
}

.modal img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 75vw;
    max-height: 80vh;
}


.mySlides {
  display: none;
}

.next {
  right: 1%;
  border-radius: 20%;
}

.numbertext {
  color: #f2f2f2;
  font-size: 1vw;
  padding: 2%;
  position: absolute;
  top: 2%;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 2%;
  color: white;
  font-weight: bold;
  font-size: 2vw;
  transition: 0.8s ease;
}

.prev:hover,
.next:hover {
  background-color: #000000;
}


/*Mobile Design*/
@media screen and (max-width: 568px) {
    body {
        font-size: 10vw;
        margin-left: 5%;
        margin-right: 5%;
    }
   
    .column {
        
        max-width: 100%;
        padding: 5vw;
    }
    
    .close {
        color: white;
        position: absolute;
        top: 2%;
        right: 3%;
        font-size: 2vw;
        font-weight: bold;
}
    
    h1 {
       font-size: 8vw; 
        line-height: 35px;
        padding: 25px;
    }
   
    header h1{
        font-size: 20vw;
        line-height: 75px;
        text-align: center;
    }
   
    header h2 {
        font-size: 10vw;
    }
    
    iframe {
        width: 65%;
        height: 65%;
        align-content: center;
    }
    
    li a {
        padding: 1px; 
    }
    
    li a:hover {
        padding: 5px;
    }
    
    p {
        font-size: 5vw;
    }
    
    .row {
        display: block;
        padding: 5vw;
    }
   
    ul {
        font-size: 7vw;
    }
    
    .videos {
        width: 100%;
        height:100%;
        margin-left: 17%;
        margin-right: auto;
    }
