/* RESET */
* {margin: 0; padding: 0;}

* {border: 0px solid lightblue;}

html body {
    height: 100%;
    overflow-x: hidden !important;
    font-family: sans-serif;
    font-size: 18px;
}

img {
    max-width: 100%; height: auto;
    border-radius: 15px;
    box-shadow: 6px 6px 8px rgba(0,0,0,0.4)
}

h1 {
    font-size: 48px;
    color: white;
}


h2 {
    font-size: 32px;
    color: white;
    
}

.vertical-align {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

/* Header Styles */

header {
    background: url(img/Triangles.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-bottom: 10px solid rgba(255,0,0);
    box-shadow: 0 6px 8px rgba(0,0,0,0.4);
}

#greeting  {
    background-color: rgba(255,0,0,0.5);
    border-radius: 15px;
    box-shadow: 6px 6px 8px rgba(0,0,0,0.4);
    padding: 8px;
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
    
    
}


.content-wrapper {
    padding: 1em 0;

}

/* Main Styles */

.resume {
    text-align: left;
    max-width: 1000px;
}

.resume h3 {
    margin-bottom: 1em;
}

.resume p {
    text-indent: 2em;
}

.resume ul {
    margin-left: 3em;
}


/* >= 768 px Medium Screen / Tablet */

@media screen and (min-width : 768px) {
    
    .content-wrapper {
        padding: 6em 0;
    }
    
}

/* >+ 1024px Extra Large Screen / Wide Desktop */


@media screen and (min-width: 1024px) {

    h1 {
        font-size: 72px;
    }
    
    h2 {
        font-size: 42px;
    }
    
    .content-wrapper {
        padding: 7em 0;
    }
    
    
    
}