body {
	margin: 0;
	padding: 0;
	border: none;
	color: #000000;
	background: #fff;
	font-family: 'Dinpro', 'Roboto', sans-serif;
	font-size: 14px;
	-webkit-font-smoothing: subpixel-antialiased;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.25rem;
}

h4 {
    margin: 0;
    font-size: 1.15rem;
    padding-top: 0.25em;
    padding-bottom: 0.25em;
}

p {
    margin: 0;
    font-size: 1rem;
    padding-top: 0.25em;
    padding-bottom: 0.25em;
    line-height: 150%;
}

/*img {
    width: 100%;
}*/

section img {
    padding:2em;
}

a, a:hover, a:visited {
    text-decoration: none;
}

section code {
  background-color: #EEE;
  padding: 0.5em 0.75em;
  line-height: 2em;
}

section:not([id]) {
    margin-bottom: 2em;
    padding-bottom: 2em;
    border-bottom: 0.05em solid #D8D8D8;
}

iframe.app-video {
    height: 544px;
    padding: 0em;
    margin-left: 4em;
}


/*--------------------------------------------------------------------------------------------------------------------------*/
/* HOME PAGE */
/*--------------------------------------------------------------------------------------------------------------------------*/

/* NAVIGATION BAR */
nav {
    width: 100%;
    top: 0;
    overflow: auto;
    z-index: 1;
}

ul.nav-bar {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #ffffff;
}

li.hamburger {
    display: none;
}

li.hamburger a, a:hover {
    text-decoration: none;
    color: black;
}

li.nav-brand {
    float: left;
    display: block;
    text-align: center;
    padding: 1.5em;
    padding-left: 2em;
    text-decoration: none;
}

#logo {
    height: 55px;
    width: 55px;
    vertical-align: middle;
}

li.nav-bar-element {
    display: block;
    float: right;
    color: black;
    text-align: center;
    padding: 3em 2em 3em 2em;
}

li.nav-bar-element a {
    color: black;
    text-decoration: none;
}

li.nav-bar-element a:hover, .active {
    font-weight: bold;
}

/* Mobile Responsiveness (Navigation Bar) */
/* Default state - hide all elements */
@media screen and (max-width: 48.75em){
    ul.nav-bar li.nav-bar-element {
      display: none;
    }

    ul.nav-bar li.hamburger {
      float:right;
      display: inline-block;
      padding: 2em;
    }
}

/* Active state - show all elements and hamburger menu */
@media screen and (max-width: 48.75em){
    ul.nav-bar.responsive {
      position: relative;
    }

    ul.nav-bar.responsive li.nav-brand {
      display: none;
    }

    ul.nav-bar.responsive li.hamburger {
      position: absolute;
      right: 0;
      top: 0;
    }

    ul.nav-bar.responsive li {
      float: none;
      display: inline;
      margin-left: 2em;
    }

    ul.nav-bar.responsive li a {
      display: block;
      text-align: left;
      margin-left: 2em;
    }
}

/* Footer Bar */
ul.footer-bar {
  list-style-type: none;
  margin: 0;
  padding: 2em;
  overflow: hidden;
  background-color: white;
  z-index: 1;  
}

li.footer-bar-element {
  float: left;
}

li.footer-bar-element a {
  display: block;
  color: black;
  text-align: center;
  padding: 1em;
  text-decoration: none;
}

li.footer-bar-element a:hover, .active {
  font-weight: bold;
}

/* INTRO & PROJECTS */
/* Introduction Header */
.intro-text {
    width: 100%;
    height: 600px;
    margin: 0 auto;
    position: relative; 
    overflow: auto;
}

.intro-text h1 {
    font-size: 3em;
    width: 65%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: auto;
}

/* Project Listings */
.pbp {
    background-color: #81C453;
}

.instapay {
    background-color: #35A6A3;
}

.dwr {
    background-color: #D0011B;
}

.safely {
    background-color: #2750A3;
}

.dodo {
    background-color: #2750A3;
}

.spotify {
    background-color: #292B2C;
}

.oneupside {
    background-color: #37B79F;
}

.project-listing {
    display:inline-block;
    text-align: center;
    color: #FFFFFF;
    width: 100%;
    height: 450px;
    position: relative;
}

.hover-effect {
    color: white;
    width: 100%;
    text-align: center;
    opacity: 0;
}

.project-listing:hover .hover-effect{
    opacity: 1;
    text-align: center;
}

.project-listing:hover, .project-listing:focus{
    color: white;
}

.project-listing h1 {
    margin: 0;
    text-align: center;
    font-size: 3em;
    z-index: 1;
    position: absolute;
    top: 4.5em;
}

.project-listing h2 {
    margin: 0;
    text-align: center;
    font-size: 1.25em;
    z-index: 1;
    position: absolute;
    top: 14.5em;
}

.project-listing img {
    margin: 0;
    display: inline-block;
    opacity: 0.3;
    height: 450px;
}

@media screen and (max-width: 48.75em){
    .intro-text h1 {
        font-size: 2.5em;
        width: 80%;
    }

    .project-listing h1 {
        font-size: 2.5em;
        top: 5.5em;
    }
}

/*--------------------------------------------------------------------------------------------------------------------------*/
/* ABOUT PAGE */
/*--------------------------------------------------------------------------------------------------------------------------*/

.content-padding {
    padding-top: 6em ;
}

.about-image {
    display: block;
    margin-right: auto;
    margin-left: auto;
    width: 65%;
}

.about-content {
    margin:1.5rem auto; 
    text-align:left; 
    width: 65%;
    overflow: auto;
}

.about-content p {
    font-size: 1.5em;
    padding-bottom: 1em;
}

.about-content img{
    display: block;
    margin-left: auto;
    margin-right:auto;
    width: 65%;
    padding: 2em;
}

.about-content, .experience-content, .skills-content {
    margin:1.5rem auto; 
    text-align:left; 
    width: 65%;
    overflow: auto;
}

.experience-content h2 {
    font-size: 1.6em;
    margin: 0;
}

.experience-content h3 {
    font-size: 1.3em;
    margin: 0;
}

.experience-content p {
    font-size: 1.3em;
    padding-bottom: 1em;
}

.skills-content h3 {
    font-size: 1.3em;
    margin: 0;
}

.skills-content p {
    font-size: 1.3em;
}

.skills-content li{
    font-size: 1.3em;
}

@media screen and (max-width: 48.75em){
    .content-padding {
        padding-top: 4em ;
    }

/*    .header-image {
        width: 100%;
        max-height: 900px;
        padding-bottom: 2em;
    }*/

    .about-content h1 {
        font-size: 2.2em;
    }

    .about-content p {
        font-size: 1.2em;
    }

    .experience-content p {
        font-size: 1.2em;
        padding-bottom: 1em;
    }


    .skills-content h3 {
        font-size: 1.2em;
        margin: 0;
    }

    .skills-content p {
        font-size: 1.2em;
    }
}

/*--------------------------------------------------------------------------------------------------------------------------*/
/* PROJECT PAGES */
/*--------------------------------------------------------------------------------------------------------------------------*/

.header-image {
    width: 100%;
    max-height: 900px;
    padding-bottom: 4em;
}

.project-image {
    max-width: 100%;
    padding-top: 2em;
    padding-bottom: 2em;
}

.project-image-full {
    max-width: 100%;
    padding-top: 2em;
    padding-bottom: 2em;
    padding-left: 8em;
    padding-right: 8em;
}

.main-content {
    display: block;
    margin-right: auto;
    margin-left: auto;
    width: 70%;  
    overflow: auto;  
}

.main-content img {
    padding-top: 0.5em;
}

.main-content img.framework-image {
    max-width: 100%;
    padding-top: 4em;
    padding-bottom: 4em;
}

.main-content h1 {
    font-size: 3.2em;
    margin: 0;
}

.main-content h2 {
    font-size: 1.8em;
    margin: 0;
}

.main-content h3 {
    font-size: 1.4em;
    padding-top: 2em;
}

.main-content p {
    font-size: 1.2em;
    padding-bottom: 1em;
}

.main-content li {
    font-size: 1.1em;
}

.title {
    padding-top: 2em;
    padding-bottom: 1em;
}


.conclusion-background {
    background-color: black;
}

.conclusion-content {
    display: block;
    margin-right: auto;
    margin-left: auto;
    width: 65%;  
    overflow: auto;  
    color: white;
    padding-top: 4em;
    padding-bottom: 8em;
}

.conclusion-content h3 {
    font-size: 1.4em;
    padding-top: 2em;
}

.conclusion-content p {
    font-size: 1.2em;
    padding-bottom: 1em;
}

iframe {
    height: 600px;
    padding-top: 3em;
    padding-bottom: 6em;
}

.pbp-color {
    color: #81C453;
    border-bottom: 0.05em solid #81C453;
}

.dwr-color {
    color: #D0011B;
    border-bottom: 0.05em solid #D0011B;
}

.spotify-color {
    /*color: #292B2C;
    border-bottom: 0.05em solid #292B2C;*/
    color: #1DB954;
    border-bottom: 0.05em solid #1DB954;
}

.instapay-color {
    color: #35A6A3;
    border-bottom: 0.05em solid #35A6A3;
}

.dodo-color {
    color: #3059FF;
    border-bottom: 0.05em solid #3059FF;
}

.oneupside-color {
    color: #34A590;
    border-bottom: 0.05em solid #34A590;
}

@media screen and (max-width: 48.75em){
    .header-image {
        width: 100%;
        max-height: 900px;
        padding-bottom: 2em;
    }

    .main-content h1 {
        font-size: 2.5em;
    }

    .main-content h2 {
        font-size: 1.6em;
    }

    .main-content h3 {
        font-size: 1.2em;
        padding-top: 1em;
    }

    .main-content p {
       font-size: 1em;
       padding-bottom: 0.5em;
    }
}












