body {
    margin: 0;
    font-family: Helvetica, Arial, sans-serif;
    color: black;
    background-image: url(images/backgrounds/roughcloth.png);
  }
  
  header {
    /* background-color: #403933; */
    background-image: url(images/backgrounds/bkground-light.jpeg); 
    margin-bottom: 40px;
  }
  
  .logo {
    font-family: 'Nanum Pen Script', cursive;
    font-size: 52px;
    color: #291e0c;
    text-align: center;
    letter-spacing: -3;
    margin: 0;
    padding: 20px 0 0 0;
  }
  
  
  /* ---  Navigation --- */
  
  header nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  
  header nav ul {
    display: flex;
    flex-direction: row;
    padding-bottom: 0;
  }
  
  header nav ul li {
    list-style-type: none;
  }
  
  header nav ul li a {
    color: #291e0c;
    text-decoration: none;
    padding: 0 20px 0 0;
    font-family: 'Montserrat Alternates', sans-serif;
  }
  
  header nav ul li a:hover {
    color: #bdbdbd;
  }
  
  @media all and (min-width: 800px) {
    header {
      display: flex;
      justify-content: space-between;
    }
  
    .logo {
      margin: 14px 0 14px 20px;
      padding-top: 0;
      font-size: 62px;
    }
    
    header nav {
      margin-top: 14px;
    }
  }
  @media all and (min-width:1000px){
      .logo{
        font-size: 72px;
      }
  }
  
  /* ---  Primary Groups --- */
  
  main {
    padding: 20px 0;
  }
  
  section {
    margin-bottom: 100px;
  }
  
  section.dark-background {   
    background-color: #c5c0b8;
    /* background-image: url(images/backgrounds/bkground-light.jpeg); */
    padding-top: 80px;
    padding-bottom: 80px;
    margin: 80px 0;
  }
  
  footer {
    background-color: #403933;
    background-image: url(images/backgrounds/bkground-light.jpeg);
    margin-top: 40px;
    margin-bottom: 0;
  }
  
  /* ---  Typography --- */
  
  h1 {
    font-size: 28px;
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 400;
    color: #403933;
  }
  
  h2 {
    font-size: 26px;
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 400;
    margin: 0 10px;
  }
  
  h3 {
    font-size: 18px;
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 500;
  }
  
  p {
   font-family: 'Montserrat', sans-serif;
   line-height: 1.5em;
   margin-bottom: 0;
  }
  
  main a {
      font-weight: 700;
      text-decoration: none;	
  }
  
  main  a:link { color: black; }
  main  a:visited { color: black; }
  main  a:hover { color: #403933; }
  a:active { color: blue; }
  
  
  a:hover {
      text-decoration: underline;	
  }
  
  footer p {
    color: #fff;
    text-align: center;
    padding: 20px;
  }
  
  
  main img {
    width: 100%;
  }
  
  img.image-enhanced {
    border-radius: 8px;
  }
  
  .group {
    display: flex;
    flex-direction: column;
  }
  
  .item {
    flex: 1;
    margin: 10px;
  }
  
  .item-double {
    flex: 2;
  }
  
  
  
  /* ---  (Desktop) Groups & Items --- */
  
  @media all and (min-width: 800px) {
    section {
      padding: 0 10%;
    }
    .group {
      flex-direction: row;
    }
  }
  
  
  
  /* Contact Form Design */
  
  form {
    padding-right: 8px;
    /* Fixed small sizing issue on the right */
  }
  
  form label {
    display: block;
  }
  
  form input, 
  form textarea {
    width: 100%;
    margin-bottom: 20px;
  }
  
  form textarea {
    height: 160px;
  }
    
  iframe {
    width: 100%;
    height: 300px;
    /* border: 0px; */
  }