body{
    display: flex;
    flex-direction: column;
    color: rgb(0,128,0); 
    background-color: rgb(32,0,0);
    
}
h1{
    text-align: center;
    animation: headGI 2s ease-out forwards;
}
h2{
    text-align: center;
}
img{
    max-width: 100%;
}
iframe{
    border: 0;
}
hr {
    border: 1px solid rgb(0,160,0);
}
li{
    margin-bottom: 1.5em;
}
table{
    border: 1px;
    background-color: rgb(0,128,0);
    border-style: solid;
}
td{
    border: 1px;
    background-color: rgb(32,0,0);
    border-color: rgb(0,32,0);
    border-style: solid;
}
input{
    color: rgb(0,128,0); 
    background-color: rgb(64,0,0);
    accent-color: rgb(128,0,0);
}
input::file-selector-button {
    background-color: rgb(32,0,0);
    color: rgb(0,128,0);
}
a:link{
    color: rgb(0,0,160);
}
a:visited{
    color: rgb(96,0,128);
}
#navBar {
    flex-direction: row;
    width: 100;
    text-align: center;
}
#content{
    text-align: center;
}
#footer{
    text-align: center;
}
#footer img{
    height: 20;
}
.sbso{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 5%;
    width: 100vw;
    justify-content: center;
}
.sbsi{
    flex: 1;
}
.trivia{
    width: 30%;
    justify-self: center;
    text-align: left;
}
.character{
    text-align: center;
    justify-content: center;
}
.character img{
    max-height: 50px;
}
.character img:hover{
    max-height: 800px;
    animation: big 2s ease-out forwards;
}
.imgspin:hover{
    animation: sp 5s linear infinite;
}
.fancy{
    font-family: "Monsieur La Doulaise", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 400%;
}
.left{
    justify-content: end;
    align-items: end;
}
.center{
    justify-content: center;
    align-items: center;
    justify-items: center;
}
.fborder{
    border-color: black;
    border-radius: 1%;
    border-style:dashed;
    padding: 5%;
}
.cborder{
    border-color: red;
    border-radius: 3%;
    border-style: solid;
}
.border{
    border:1px solid black;
}
.rainbow{
    animation: rb 5s infinite;
}
.trueRainbow{
    animation: rb2 5s infinite;
}
.spin{
    animation: sp 5s linear infinite;
}
.growIn{
    animation: gi 5s ease-out forwards;
}
@keyframes rb {
  0% {color: red;}
  10% {color: yellow;}
  20% {color: lime;}
  30% {color: aqua;}
  40% {color: blue;}
  50% {color: magenta;}
  60% {color: blue;}
  70% {color: lime;}
  80% {color: aqua;}
  90% {color: yellow;}
  100% {color: red;}
}
@keyframes rb2 {
  0% {color: red;}
  16% {color: yellow;}
  33% {color: lime;}
  50% {color: aqua;}
  68% {color: blue;}
  80% {color: magenta;}
  100% {color: red;}
}
@keyframes sp {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes gi {
    0%{
        height: 0px;
    }
    100%{
        height: 50px;
    }
}
@keyframes headGI {
    0%{
        font-size: 0px;
    }
    100%{
        font-size: 50px;
    }
}
@keyframes big {
    0%{
        height: 50px;
    }
    100%{
        height: 800px;
    }
}