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


a {
  color: black;
}

a:visited {
  color: #7E708A;
}

a:hover {
  color: #9772B8;
}


body {
  background-color: lightgrey;
  background-repeat: repeat;
  font-family: "Darumadrop One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  background-image: url("https://64.media.tumblr.com/c8c32a8439e7502b400007b009037015/6a53a9e453553848-a0/s250x400/59b82ab262e59f20da78578b6c273e4b9864dd67.pnj");
}

.element {
  position: fixed;
  bottom: 20px;
  left: 20px;
}

.element2 {
  position: fixed;
  top: 20px;
  left: 20px;
}

hr {
  border: 1px black dotted;
}

.container {
 display: grid;
 grid-gap: 15px;
 grid-template: 
    "header header header header header"
    "info   main main main    nav"
    "footer footer footer footer footer"
    ;

 margin: 95px;
 border: 15px solid transparent;
 border-image: url("https://solaria.neocities.org/guides/borderimage/blacklacelarge.png") 34 round;
 background-clip: padding-box;
 padding: 15px;
 background-image: url("https://bettysgraphics.neocities.org/images/backgrounds/pattern%20256.gif");
}

header {
  grid-area: header;
  border: 2px black dotted;
  background-color: black;
  padding: 10px;
  text-align: center;
  color: white;
}

nav {
  grid-area: nav;
  border: 2px black dotted;
  padding: 10px;
  background-color: white;
}

info {
  grid-area: info;
  border: 2px black dotted;
  padding: 10px;
  background-color: white;
  
}

main {
  grid-area: main;
  border: 2px black dotted;
  padding: 10px;
  background-color: white;
}

footer {
  grid-area: footer;
  border: 2px black dotted;
  padding: 10px;
  background-color: white;
  font-size: 16px;
  color: grey;
  text-align: center;
}

@media (max-width: 800px) {
  .container {
    grid-template: 
    "header"
    "info"
    "main"
    "nav"
    "footer";
  }
}





