/* 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: white;
  background-image: url('leopardprint.jpg');
  font-family: Verdana;
}

.tlace {
  background-image: url('lace.jpg');
  display: block;
    background-repeat: repeat-x;
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

.box {
  width: 350px;
  height: 150px;
  margin: 10px;
  padding: 25px;
  border: 5px solid black;
}

header { 
  grid-area: header; 
height: 100px;
background-image: linear-gradient(
180deg,
rgb(190 123 50 / 100%) 39%,
rgb(255 255 255 / 100%) 96%
);
}

aside { 
  grid-area: sidebar; 
    border: 1px solid currentColor;
}

main { 
  grid-area: main; 
width: 100%;
}

footer { 
  grid-area: footer; 
height: 50px;
}

.container {
  display: grid;
  grid-gap: 0.5px;
  width: 800px;
  background-color: white;
  position: absolute;
  top: 30%;
  left: 30%;
  grid-template:
    "header header"
    "sidebar main"
    "footer footer"
    / 200px 1fr;
}
