/* 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." */

/*Palette:
#1e201e
#3c3d37 
#697565 
#ecdfcc 
*/

#footer {
            position: fixed;
            bottom:0;
            width: 100%;
            height: 100px;
            background: transparent;
            color: #ecdfcc ;
            font-family:Arial;
            text-align: center;
        }

.container {
  display: grid;
  grid-template-areas:
    "header header"
    "menu content";
  grid-template-columns: 1fr 6fr;
  gap:3px;
}
.container div {
  background-color: #1e201e;
  color: #ecdfcc;
  font-family:Arial;
  padding: 10px;
  
}
.container .header {
  grid-area: header;
 text-align: center;
   border-bottom: 3px solid #697565;
}
.container .menu {
  grid-area: menu;
  border-right: 3px solid #697565;
}
.container .content {
  grid-area: content;
}

ul{
  font-family:Arial;
  color: #697565;
  list-style-type:none;
  }

p{
  font-family:Arial;
  color: #697565;
  }
  
 a {
  font-family:Arial;
  color: #ecdfcc;
  text-decoration: none;
  padding: 5px;
  }
  .nav{
    padding: 0px;
    border-radius: 0px;
    }


  
a:hover {
  background-color: #3c3d37 ;
  border: 1px solid #697565;
  border-radius: 5px;
  padding: 4px;
}

.nav:hover{
  background-color: transparent;
  border: none;
  text-decoration: underline;
  border-radius: 0px;
  padding: 0px;
  }

/* selected link */
a:active {
  background-color: #697565;
}
  
body{
  background-color:#1e201e;
  }
