/* 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: teal;
  color: black;
  
  
}

div{
    font-family: Arial;
  }

.container{
  border-style: double;
  border-color: DarkSlateGray;
  border-width: 15px;
  background-color: white;
  width: 80%; 
  margin: 50px 0px 10% 10%;
  display: grid;
   grid-template-columns: 0.8fr 2fr 1fr;
  }
  
.container > div{
  border-style: solid;
  border-color: SlateGray;
  border-width: 10px;
  }
  
.Intro{
  grid-column-start: 1;
  grid-column-end: 4;
  text-align: center;
  font-family: Verdana;
}

.QuaintLilFooter{
  background-color: Gray; 
  border-style: double;
  display: flex;
  
  }
  
.QuaintLilFooter > div{
  border-style: double;
  border-width: 5px;
  border-color: black;
  }

.Sidebar{
  grid-column-start: 1;
  grid-column-end: 1;
  background-color: CadetBlue;
  }
.Sidebar > ul{
  list-style-type: none;
  margin: 0;
  padding: 0px;
  
  }

.Sidebar > ul li{
  background-color: teal;
  border-left-style: solid;
  border-width: 1px 1px 1px 11px;
  border-color: black;
  border-style: solid;
  }
.Sidebar > ul li:hover{
  transform: scale(1.1);
  background-color: white;
  
  }
  

  
.VeryFunnyImg{
  width: 100%;
  height: 100%;
  object-fit: contain;
  }
  
.MainText h1, .MainText h2, .MainText h3{
  background-color: teal;
  text-align: center;
  
  }
  
  

@keyframes Shimmer{
  0% {background-position: 0% 0%;}
  50% {background-position: 100% 0%;}
  100%{background-position: 0% 0%;}
  }

div .Ccode:hover{
  animation: Shimmer 15s ease infinite;
  transform: scale(1.1);
  }  

div .Ccode{
  background-color: black;
  color: #4169E1;
  border: 3px solid gray;
  padding: 3px;
  border-radius: 4px;
  box-shadow: 3px 3px 1px #7FADDC;
  
  
  background-image: radial-gradient(circle at top left, black, #171725, #222246, #171725, black);
  background-size: 400% 400%;
  margin: 2px;
  letter-spacing: 0.5px;
  display: inline-block;
  
  }
  
  
  .BlogIntro{
  grid-column: 2 / span 2;
  text-align: center;
  font-family: Verdana;
}

.Blog{
  overflow-y: scroll;
  height: 550px;
  grid-column: 2/span 2;
  
  }

