@import url('https://fonts.googleapis.com/css?family=Roboto|Work+Sans:500');

body{
margin: 0;
background-color: black;
font-size: calc( 1vw + 10px);

}

#home img{
width:100%;
}

nav{
position:fixed;
background-color:black;
width:100%;
z-index: 1;
font-family: 'Roboto', sans-serif;

}

nav ul li{ 
  display: inline-block;
  padding: 5px 15px; 
}

nav ul li a { 
  color:white;
  text-decoration: none;
}

nav ul li a:hover{ 
  color:rgb(240,141,179); 
  text-decoration: none;
}

p a { 
  color:rgb(240,141,179,.8); 
  text-decoration: none;
}

p a:hover {
    color:rgb(240,141,179);
    border:1px solid #f08db3;   
  	text-decoration: none;
    padding: 5px 15px; 
}



h1, h5{
color:#f08db3;
text-align: center;
font-family: 'Roboto', sans-serif;
}

h5{	color:white;}

p{
color:white;
font-family: 'Work Sans', sans-serif;
text-align: center;
font-size: calc( 1vw + 5px );
max-width: 700px;
margin: 0 auto;
display:block;
padding: 0px 55px; 

}



.modal-content {
    margin-left: auto;
    margin-right: auto;
    display: block;
}


.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.7); /* Black w/ opacity */
}

.modal-content, #caption {    
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)} 
    to {-webkit-transform:scale(1)}
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color:rgb(240,141,179); 
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color:rgba(240,141,179,.7); 
    text-decoration: none;
    cursor: pointer;
}

    
@media only screen and (min-width: 400px){
    .modal-content {
        width: 100%;
    }
}

@media only screen and (min-width: 700px){
    .modal-content {
        width: 70%;
    }
    #header{
      height: 900px;

    }
}

@media only screen and (min-width: 900px){
    .modal-content {
        width: 60%;
    }
    .modal{
	padding-top: 50px;

    }
    


}


