@font-face {
  font-family: pixels; /* set name */
  src: url(pixelfont.ttf); /* url of the font */
}

/*MENU - TOPBAR*/

.menu {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: center;
}

.menu a {
    font-size: 2em;
    padding: 5px;
    text-transform: uppercase;
    cursor: pointer;
    color: #88d8c0;
    text-decoration: none;
}

.menu a:hover {
    color:aqua;
}

.menu a:not(:last-child)::after {
  content: " -";
  color: #88d8c0;
}

#sidebar {
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0px;
  height: fit-content;
  display: flex;
  overflow-y: hidden;
}

header {
  width: 100%;
  overflow: hidden;
  height: 200px;
  background-position: top;
  background-image: url(https://images.pexels.com/photos/812958/pexels-photo-812958.jpeg);
}

header::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  filter: blur(1px);
  backdrop-filter: blur(1px);
  height: 200px;
}



/*BODY*/

body {background-color: #202224; margin: 0; font-family: monospace; font-size: 1.3em;}

#container {
    max-width: 1100px;
    margin: 10px auto;
}


main {
  background-color: #f0f3f7;
  flex: 1;
  padding: 20px;
  order: 2;
  overflow: hidden;
  border:#b5f5d5 3px solid;
}

h1 {
  margin-top: -15px;
  text-transform: uppercase;
}

.left {
  display: block;
  float: left;
  width: 40%;
}
.left img , .right img{
  display: block;
  width: 70%;
  margin: auto;
}

.right {
  display: block;
  float: right;
  width: 60%;
}

@media screen and (max-width: 600px) {
.left {
  width: 100%;
}

.right {
  width: 100%;
}
}

#name {
  color:#da7c12;
  font-weight: 700;
}

.fanlistings {
  width: 100%;
  display: inline-block;
  text-align: center;
}

.fanlistings img {
  opacity: 0.7;
  transition: 0.5s;
  filter: grayscale(100%);
}
.fanlistings img:hover {
  opacity: 1;
  transition: 0.5s;
  filter: grayscale(0%);
  scale: 1.1;
}

.xtra_boxy {
  WIDTH:99%;
  display: inline-block;
  padding: 10px;
  margin: auto;
  text-align: center;

  background-color: #b5f5d5;
}

#ring {
  display: inline-block;
  color: #565183;
}

 #ring a {

  color: #353250;
  transition: 0.2s;
}

#ring a:hover {
  color: #4c43a0;
}

#fandomring {
  color: #565183;
}

 #fandomring a {

  color: #353250;
  transition: 0.2s;
}

#fandomring a:hover {
  color: #4c43a0;
}

#credit {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 0;
  padding: 0px;
  font-size: small;
}


hr { 
    background: url('lilguy.png') no-repeat top center;
    background-size: contain;
    display: block;
    height: 50px;
    border: 0;
    position: relative;
    width: 50%;
}
hr:before,
hr:after {
    content: '';
    display: block;
    position: absolute;
    background: #84d5c0;
    height: 2px;
    top: 25px;
}
hr:before {
    left: 0;
    right: 50%;
    margin-right: 20px;
}
hr:after {
    right: 0;
    left: 50%;
    margin-left: 20px;
}

#splashtext {
    text-transform: uppercase;
    color: #F5DA27;
    font-family: pixels;
    text-shadow: 0.05em 0 black, 0 0.05em black, -0.05em 0 black, 0 -0.05em black, -0.05em -0.05em black, -0.05em 0.05em black, 0.05em -0.05em black, 0.05em 0.05em black;
    transform: rotate(-0.5deg);
    text-align: center;
    animation: shake 0.8s infinite;
    margin: 0;
    padding: 0;
    font-size: 1.3em;
}

@keyframes shake {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(1deg); }
  50% { transform: rotate(0eg); }
  75% { transform: rotate(-1deg); }
  100% { transform: rotate(0deg); }
}