/* 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." */
   
#shadow {
  -webkit-box-shadow: 0px 0px 11px 3px #E4A8FF; 
  box-shadow: 0px 0px 18px 9px #E4A8FF;
}
body {
   background-image: url('http://dl3.glitter-graphics.net/pub/1816/1816003ae89mys83f.gif'); 
  background-attachment: fixed;
  background-repeat: repeat;
  justify-content: center;
  align-items: center;
}
.container {
  max-width: 950px;
  margin: 100px auto;
  display: grid;
  grid-gap: 25px;
  grid-template-columns: 225px minmax(0, 1fr);
  }
  
#navbar {
  height: 40px;
  background-color: #13092D;
  /* navbar color */
  width: 100%;
}
#navbar ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style-type: none;
  justify-content: space-evenly;
}
#navbar li a {
  color: #F980F7;
/* navbar text color */
  font-weight: 800;
  text-decoration: none;
 /* this removes the underline */
}
#navbar li a:hover {
  color: #74E97D;
  text-decoration: underline;
}

h1 {
  text-align: center;
}


header, main, footer {
  height: 50px;
  max-width: 10000px;
  -webkit-box-shadow: 0px 0px 11px 3px #E4A8FF; 
  box-shadow: 0px 0px 11px 3px #E4A8FF;
  background-color: #D4CEF5;
  padding: 10px 25px 10px 25px;
  border-radius: 12px;
}

header {
  grid-row: 1 / 2;
  grid-column: 1 / 3;
}
nav {
  grid-row: 2 / 3;
  grid-column: 1 / 3;
  height: max-content;
  
}
  
main {
  grid-row: 3 / 4;
  grid-column: 2 / 3;
  height: max-content;
  
}
footer {
  grid-row: 4 / 5;
  grid-column: 1 / 3;

::-webkit-scrollbar-thumb {
    background-color: #822ed6;
    border-radius: 20px;
}
