html {
    scroll-behavior: smooth;
  }
  body,
  html {
    margin: 0;
    padding: 0;
  }
  @font-face {
    font-family: Louis;
    src: url(louis_george_caf/Louis\ George\ Cafe.ttf);
  }
  body {
    font-family: Louis !important;
    font-size: 18px;
    color: rgb(73, 39, 19);
  }
  header {
    background-color: #F2E9E4;
    width: 100%;
    height: 50px;
    margin-top: 0px;
    font-weight: bold;
  }
  header h1 {
    position: absolute;
    font-size: 20px;
    width: 100%;
    text-align: center;
    font-weight: bold;
  }
  h2 {
    position: center;
    font-size: 25px;
    width: 100%;
    text-align: center;
  }
  h3  {
    padding: 20px 30px 0px 30px;
  }
  h4  {
    padding: 0px 30px;
    color: #A6634B;
  }
  main {
    max-width: 1280px;
    position: relative;
    margin: 0px auto;
  }
  .rectangle{
      /* width: 100%;
      height: 500px; 
      position: relative; */
      display: grid;
      grid-template-columns: 2fr 1fr;
      background-color: #E5D8D1;
    }
    .rectangle img {
      /* width: 100%; */
      order: 1;
      padding: 15px;
    }
    .rectangle.alt {
      grid-template-columns: 1fr 2fr;
      text-align: right;
      padding: 15px;
    }
    .rectangle.alt img {
      order: 0;
    }
  p {
    padding: 0px 30px;
  }
  article {
    background-color: #F2E9E4;
  }
  footer {
    background-color: #F2E9E4;
    height: 300px;
  }
  nav {
    width: 100%;
    background-color: #cb9a7c;
    height: 50px;
    padding-top: 30px;
  }
  nav ul {
    text-align: center;
    margin: 0;
    padding: 0;
  }
  nav ul li {
    display: inline-block;
    margin: 0px 20px;
  }
  nav ul li:first-child {
    margin-left: 15px;
  }
  nav li a {
    text-decoration: none;
    color: rgb(73, 39, 19);
  }
  
  article,
  aside,
  footer {
    padding: 15px;
  }
  /* #banner {
    width: 100%;
    height: 35vh;
    background-color: #cb9a7c;
    background-image: url(../img/lilypad.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: center;
  } */
  @media only screen and (max-width: 1024px) {
    main {
      grid-template-columns: 1fr 1fr;
    }
  }
  @media only screen and (max-width: 600px) {
    main {
      grid-template-columns: 1fr;
    }
    .rectangle{
      grid-template-columns: 1fr ;
    }

    .rectangle.alt {
      grid-template-columns:  1fr;
    }
    .rectangle.alt img {
      order: 0
    }
  }
  button#scroll-top {
    float: right;
    position: relative;
    right: 20px;
    top: 0px;
  }
  main section {
    text-align: center;
  }
 