
body {
  font-family: Work Sans;
  font-size: 16px;
  font-weight: 400;
  color: #45301C;
  background-color: #F9F5F0;
	max-width: 400px;
  margin: 40px auto 0 auto;
  padding: 1.5em;
}

h1, h2, h3, h4, h5 {
  font-family: 'aesthet-nova';
}

header {
  position: fixed;
  background-color: #F9F5F0;
  top: 0;
  left: 0;
  display: flex;
  padding: 16px;
  z-index: 2;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s ease;
}

div.progressbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 6px;
  background-color: #FFA67A;
  z-index: 3;
  transition: background-color 0.5s ease;
}

a {
  text-decoration: none;
  color: #45301C;
}

p {
  font-family: Work Sans;
  line-height: 1.5em;
  margin-bottom: 1em;
}

h2 {
  font-size: 1.777rem;
  line-height: 1.5;
}

h3 {
  font-size: 1.333rem;
  line-height: 1.5;
}

img {
  border: 10px solid #FFEC9E;
}

img.green {
  border: 10px solid #86A26D;
  margin-bottom: 2em;
}

img.pink {
  border: 10px solid #F99290;
  margin-top: 2em;
  margin-bottom: 2em;
}

section.intro {
  position: relative;
  z-index: 1;
  min-height: 800px;
}

div.intro-text {
   margin-bottom: 10px;
}

div.slides {
  position: relative;
  height: 475px;
}

div.slides img {
  position: absolute;
  top: 0;
  left: 0;
}

div.slides img:first-child {
  z-index: 1;
}

div.slides img {
  pointer-events: none;
}

.about-copy {
   padding-bottom: 1em;
   padding-top: 1em;
}

div.mc-field-group {
    display: flex;
    flex-direction: column;
}

input#mce-EMAIL,
input#mce-FNAME,
input#mce-LNAME {
   border: 1px solid rgba(69, 48, 28, 0.69);
}

label {
  margin: 0.5em 0 0.5em 0;   
}

.button {
    display: inline-block;
    border: none;
    padding: 1rem 2rem;
    margin: 0;
    text-decoration: none;
    background-color: #FFEC9E;
    color: #45301C;
    font-family: inherit;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    -webkit-appearance: none;
    -moz-appearance: none;
  	transition: background 0.5s ease;
}

.button:hover {
  background-color: #ffdf5e;
}


  footer {
    flex-direction: column;
    padding: 1em;
  }
  
  nav.footer-nav a {
    padding-bottom: 0.8em;
  }

 footer nav {
    display: flex;
    flex-direction: column;
  }

@media (max-width: 350px) { 
  body {
        padding: 2em;
  }
  section.intro {
    min-height: 64vh;
  } 
}

@media(min-width: 600px) {
  body{
    max-width: 660px;
  }
  section.intro {
    min-height: 1230px;
  }
}

@media(min-width: 1000px) {
  
  body{
    max-width: 1200px;
  }
  
  h1, header a {
    font-size: 1.333rem;
  }
  
  header {
    padding: 32px;
  }
  
  h2 {
  font-size: 3.157rem;
  line-height: 1.3;
}

h3 {
  font-size: 2.369rem;
  line-height: 1.3;
}
  
  section {
    min-height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  section:nth-child(odd){
   flex-direction: row-reverse;
  }
  
  section.intro {
    min-height: 80vh;
    margin-bottom: 20vh;
  }
 
  div.slides {
    width: 25vw;
  }
  
  div.about-copy,
  div.mailchimp,
  img.green, 
  img.pink {
    max-width: 500px;
  }
  
  footer{
    display: flex;
    flex-direction: row;
    width: 100vw;
  }
  
  footer div, footer nav {
    width: 50%;
  }
  
  footer nav{
    display: flex;
    flex-direction: column;
  }

}





