html {
    height: 100%;
}

body {
    height: 100%;
    background-color:#393A61;
    color:#E3CF9F;
    font-family: 'Merriweather Sans', sans-serif;
}

a {
    text-decoration: none;
    color:#E3CF9F;
    transition:0.5s;
}

a:hover {
    color:white;
    transition:0.5s;
}

.main {
    height: 100%;
}
.social-image{
    width: 30px;
    margin: 15px;
}

p {
    color:#E0B660;
}

.rightPane img {
    height:50%;
    width:50%;
    opacity:0.85;
}

.header {
    display:flex;
    justify-content:space-around;
    font-family: 'Parisienne', cursive;
    font-size:30px;
    background-color:#E3CF9F;
    color:black;
    padding-bottom:15px;
    border-bottom:2px dotted #C79724;
}

.navbar {
    display:flex;
    padding-top:15px;
    justify-content:space-around;
    margin-bottom:15px;
    background-color:#E3CF9F;
}

.navbar a {
    margin-bottom:15px;
    color:black;
}

.navbar a:hover {
    color:#C79724;
}

.footer {
    display:flex;
    justify-content:space-around;
    background-color:#E3CF9F;
}

.footer p {
    color:#C79724;
}

.gallery {
    display:flex;
    flex-wrap:wrap;
    justify-content:space-around;
}

.thumbnail-image {
    width:350px;
    margin:10px;
    padding:10px;
    border:1px dotted #E3CF9F;
}

#cover {
    width:100%;
    height:100%;
}

.aboutMain {
    display:flex;
    height:100%;
}

.leftPane {
    width:70%;
    justify-content:center;
}

.rightPane {
    width:30%;
    justify-content:center;
}

.rightPane img {
    height:100%;
    width:420px;
} 

