body, html{
    height: 100%;
    font-family: "Alegreya Sans", sans-serif;
}

@media(max-width: 768px){
    #header{
        text-align: center;
    }
    #header img{
        margin:0 auto;
    }
}

.navbar {
    background-color: rgba(21,31,33,0.5);
    border-bottom: 1px solid #dedede;
    font-family: "Alegreya Sans", sans-serif;
}

.navbar .navbar-nav .nav-link{
    color: #d1d1d1;
}

.navbar .navbar-nav .nav-link:hover {
    color: #fff;
}

.navbar-toggle-icon{
    color:#fff;
}


/*HEADER*/
#header{
    background: url(../img/onthemoon.jpg) top center no-repeat;
    background-size: cover;
    height: 100%;
    color: whitesmoke;
    display: flex;
    align-items: center;
}

#header img{
    padding: 0 0 20px 0;
    width: 80%
}

#header .header-right{
    background-color: rgba(0,0,0,0.5);
    padding: 30px;
    border-radius: 10px;
}


#header .fa{
    margin: 5% 0;
}

#header a .fa {
    color: white;
    
}
#header a .fa:hover {
    color: #ccc;
}

/*POEM*/
#poem{
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
    height: 100%;
    color: darkslategray;
    display: flex;
    align-items: center;
}

/*SONG*/
#song{
    background: url(../img/love-bg.jpg) bottom right no-repeat;
    background-size: cover;
    height: 100%;
    color: darkslategray;
    display: flex;
    align-items: center;
}

/*PHOTO*/
#photo{
    background: url(../img/pexels-bg.jpg) center center no-repeat;
    background-size: cover;
    height: 100%;
    color: whitesmoke;
    display: flex;
    align-items: center;
}

/*CONTACT*/
#contact{
    background: url(../img/stars-bg.jpg) center center no-repeat;
    background-size: cover;
    height: 100%;
    color: whitesmoke;
    display: flex;
    align-items: center;
}

#contact .contact-form-padding{
    background-color: rgba(0,0,0,0.5);
    padding: 30px;
    border-radius: 10px;
}

#myImg:hover {
    opacity: 0.8;
    -webkit-transform: scale(1.1,1.1);
}



/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px;
    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.9); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    display: block;
    width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation - Zoom in the Modal */
.modal-content, #caption { 
    animation-name: zoom;
    animation-duration: 0.6s;
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
    .modal-content {
        width: 100%;
    }
}

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