/* Fonts from Google Fonts - more at https://fonts.google.com */

@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700');
@import url('https://fonts.googleapis.com/css?family=Merriweather:400,700');

html {
    min-height: 100%;
    margin: 0;
}

body {
    position: relative;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    color: #f5f5f5;
    background-image: url(assets/desk.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-shadow: 0 4px 15px #181818;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    height: 100%;
    width: 100%;
    max-width: 1000px;
    background-color: rgba(78, 78, 78, 0.7);
    z-index: -1;
}

h1 {
    /*  font-family: "Merriweather", serif;*/
    font-size: 32px;
}

.wrapper {
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
    z-index: 10;
    padding: 5% 0;
}

.section {
    padding: 30px 20px;
}

.section:nth-child(even) {
    background-color: #a69eb0;
}

.content {
    display: block;
    position: relative;
    top: 0;
    left: 0;    
}

.images {
    display: block;
    position: relative;
    float: right;
    padding: 30px 0;
    width: 50%;
}

.footer {
    padding: 10vh 10vw;
}

@media only screen and (max-width: 515px) {
    .wrapper {
        width: 100%;
    }
    .content {
        font-size: 0.9em;
    }
    .sectionHeading {
        font-size: 1.0em;
    }
    .images {
        display: block;
        margin: auto;
        width: 80%;
        float: none;
    }
}
