/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #66CDAA;
  color: #FAEBD7;
  font-family: Verdana;
}

p {
  color: #70492c;
 font-size: 75%;
}

        body {
          margin: 30px;
        }
        .sidebar {
            grid-area: sidebar;
        }
        .sidebar2 {
            grid-area: sidebar2;
        }
        .content {
            grid-area: content;
        }
        .header {
            text-align: center;
            grid-area: header;
        }
        .wrapper {
            display: grid;
            /*grid-gap: 1em;*/
            grid-template-areas:
             "header"
             "sidebar"
             "content"
             "sidebar2"
        }
        
        
        @media only screen and (min-width: 700px)  {
            .wrapper {
                margin-left: auto;
                margin-right: auto;
                grid-template-columns: 20% auto;
                grid-template-areas:
                "header   header"
                "sidebar  content"
                "sidebar2 sidebar2";
            }
        }
        @media only screen and (min-width: 800px)   {
            .wrapper {
              grid-template-columns: 200px auto 200px;
              grid-template-areas:
              "header  header  header"
              "sidebar content sidebar2";
              max-width: 900px;
            }
        }
        .box {
          background-color: rgba(143, 188, 143, 0.7);
          color: #FFFFDD;
          border-radius: 2px;
          border:ridge;
          border-color: #F0E68C;
          padding: 5px;
          font-size: 100%; 
        }
        
    
    