/* 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-image: url('gifs/matrix.gif');
  color: #00FF66;
  font-family: Courier;
  text-align: center;
}

li {
  list-style-type: none;
}
  
a:link {
  color: #33CC00;
  background-color: transparent;
  text-decoration: underline;
}

a:visited {
  color: #FFB000;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: #33CC00;
  background-image: url('gifs/matrix.gif');
  text-decoration: underline;
  border: 1px solid #33CC00;
}

a.secret:hover {
  color: #e1b429;
  text-decoration: underline;
  background-image: none;
  border: 2px solid #e1b429;
  padding: 5px;
}

.a-gif {
   max-width: 90%;
   height: auto; 
}


.container{
    border: 1px solid #33CC00;
    background-color: black;
    width: 1280px;
    height: 1024px;
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    grid-template-rows: 10% 25% 25% 25% 15%;
    grid-template-areas:
      "header header header header"
      "menu content content content"
      "menu content content content"
      "menu content content content";
      gap: 5px;
      justify-self: center;
      padding: 10px;
}

.side {
    border: 2px solid #33CC00;
    grid-area: menu;
    height: 870px;
}

.side ul{
  float:left;
}

.banner {
   /* border: 1px solid #33CC00;*/
   font-size: 30px;
    grid-area: header;
}

.content {
/*border: 1px solid #33CC00;*/
height: fit-content;
grid-area: content;
padding: 20px;
text-align: justify;
}

.youtube {
  display: flex;
  flex-wrap: wrap;
}

.youtube iframe {
  width: 50%;
  height: auto;
  padding-bottom: 10px;
}
