@import url('https://fonts.googleapis.com/css?family=Bitter|Quicksand|Rasa');
/* font-family: 'Bitter', serif;
font-family: 'Quicksand', sans-serif;
font-family: 'Rasa', serif; */

* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

body {
    font-family: 'Quicksand', sans-serif;
    line-height: 24px;
    font-weight: 300;
}

h1 {
    font-size: 2.5em;
    font-family: 'Rasa', serif;
    font-weight: 400;
    color: white;
    margin-top: 20px;
}

/* ************** HEADER **************** */

header {
    background-color: #196307;
    text-align: center;
    padding: 30px;
    
}

/* ************** SECTION **************** */

section {
    width: 1000px;
    height: 400px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}

.mainImage {
    position: absolute;
}

.resumDiv {
    width: 100%;
    /* background: #196307; */
}

.opacityDiv {
    width: 40%;
    height: 400px;
    background: black;
    padding: 20px;
    opacity: 0.6;
    text-align: left;
}

.resumDate {
    margin-top: 20px;
    color: white;
}

.resumParagraph {
    margin-top: 20px;
    color: white;
}

h2 {
    margin-top: 20px;
    font-size: 1.8em;
    font-family: 'Rasa', serif;
    font-weight: 400;
    color: white;
}

hr {
    margin-top: 20px;
    width: 100px;
    height: 2px;
    border-color: #196307;
}

/* ************* MENU IMAGE ************************ */



.itemDiv {
    width: 1000px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}

.itemImage {
    width: 150px;
    height: 150px;
    border: solid white;
    margin-right: 20px;
    transition: .5s ease;
}

.itemImage:hover {
    opacity: 0.6;
    cursor: pointer;
    border: solid #196307;
}

.itemParagraph {
    margin-top: 30px;
    margin-bottom: 10px;
}