@import url(https://fonts.googleapis.com/css?family=Amatic+SC);

body {
    width:100%;
    height:100%;
    font-family: 'Lato', sans-serif;
    margin: 0px;
    position:absolute;
    overflow: hidden;
}

a:link {
    text-decoration:none;
    text-transform:none;
}

#center-name {    
    display: block;
    width: 100%;
    align-items: center;
    color: #fff;
    padding: 1vh;
    position: relative;
    padding: 0;
}

#center-name h1 {
    padding-top: 6vw;
}

#center-name img.logo {
    width:65%;
    display:block;
    margin: 0 auto;
}

#info {
    font-family: 'Amatic SC', cursive;  
    width: 100%;
    font-weight: lighter;
    text-transform: uppercase;
    text-align: center;
    color: #000;
    margin: 2vw 0;
}

ul {
    padding: 0;
    list-style-type: none;
}

#info ul li {
    display: inline;
    font-size: 4vw;
    margin: 0 1vw;
}

#info ul li.camera {
    letter-spacing: 1.5px;
}

#info .email, .email span {
    font-size: 2vw;
    color: #A8A8A8;
    margin: 2vw 0;
}

.email span {
    font-size: 1.7vw;
}

#info .email a:link {
    color: #A8A8A8;
    font-size: 2.3vw;
}

#info .email a:visited {
    color: #A8A8A8;
}

#footer {
    font-family: 'Amatic SC', cursive;
    position: absolute;
    bottom: 0;
    align-items:center;
    width: 100%;
    padding-bottom: 1vw;
}

#footer div {
    color: #000;
    display: inline;
    font-size: 1.75vw;
    margin: 0 auto;
}

#footer .right {
    left: 95%;
    position: relative;
    color:#ccc;
}

/* lightbox for camera package */

/* Styles the lightbox, removes it from sight and adds the fade-in transition */

.lightbox-target {
position: fixed;
top: -100%;
width: 100%;
background: rgba(0,0,0,.7);
width: 100%;
opacity: 0;
-webkit-transition: opacity .5s ease-in-out;
-moz-transition: opacity .5s ease-in-out;
-o-transition: opacity .5s ease-in-out;
transition: opacity .5s ease-in-out;
overflow: hidden;
}

/* Styles the lightbox image, centers it vertically and horizontally, adds the zoom-in transition and makes it responsive using a combination of margin and absolute positioning */

.lightbox-target img {
margin: auto;
position: absolute;
top: 0;
left:0;
right:0;
bottom: 0;
max-height: 0%;
max-width: 0%;
border: 3px solid white;
box-shadow: 0px 0px 8px rgba(0,0,0,.3);
box-sizing: border-box;
-webkit-transition: .5s ease-in-out;
-moz-transition: .5s ease-in-out;
-o-transition: .5s ease-in-out;
transition: .5s ease-in-out;
}

/* Styles the close link, adds the slide down transition */

a.lightbox-close {
display: block;
width:100%;
height:100%;
text-decoration: none;
position: absolute;
top: -80px;
right: 0;
-webkit-transition: .5s ease-in-out;
-moz-transition: .5s ease-in-out;
-o-transition: .5s ease-in-out;
transition: .5s ease-in-out;

/*box-sizing: border-box;
background: white;
color: black;*/

}

/* Provides part of the "X" to eliminate an image from the close link */

a.lightbox-close:before {
content: "";
display: block;
height: 30px;
width: 1px;
background: black;
position: absolute;
left: 26px;
top:10px;
-webkit-transform:rotate(45deg);
-moz-transform:rotate(45deg);
-o-transform:rotate(45deg);
transform:rotate(45deg);
}

/* Provides part of the "X" to eliminate an image from the close link */

a.lightbox-close:after {
content: "";
display: block;
height: 30px;
width: 1px;
background: black;
position: absolute;
left: 26px;
top:10px;
-webkit-transform:rotate(-45deg);
-moz-transform:rotate(-45deg);
-o-transform:rotate(-45deg);
transform:rotate(-45deg);
}

/* Uses the :target pseudo-class to perform the animations upon clicking the .lightbox-target anchor */

.lightbox-target:target {
opacity: 1;
top: 0;
bottom: 0;
}

.lightbox-target:target img {
max-height: 100%;
max-width: 100%;
}

.lightbox-target:target a.lightbox-close {
top: 0px;
}

a.lightbox:link, a.lightbox:visited {
    color:#000;
}