body {
  background-image: url(https://swampbrainz.neocities.org/imgs/miitopia/bluepaper.jpg);
  background-size: 100% cover;
  background-repeat: repeat;
  font-family: "MS PGothic", Serif;
  font-weight: 750;
  color: #4d3126;
  padding-top: 22px;
  padding-left: 15px;
  padding-right: 15px;
}
#mainborder {
  background-image: url(https://swampbrainz.neocities.org/imgs/miitopia/beige-gingham.jpg);
  background-size: 50%;
  background-repeat: repeat;
  width: 850px;
  height: 700px;
  margin-left: auto;
  margin-right: auto;
  border: 10px solid #4d3126;
  display: flex;
  flex-direction: column;
  border-radius: 30px;
}
#banner {
  height: 200px;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.5%;
  overflow: hidden;
  border: 10px double #182f40;
  filter: drop-shadow(2.5px 2.5px 2.5px #ffffff80)
    drop-shadow(-2.5px 5px 2.5px #ffffff80)
    drop-shadow(2.5px -5px 2.5px #ffffff80);
  position: relative;
}
#bannerinside {
  background-image: url(https://swampbrainz.neocities.org/imgs/miitopia/greenhornebanner.jpg);
  height: 100%;
  width: 1500px;
  animation: scrollbanner 50s infinite;
  position: relative;
}
.miitopialogo {
  width: 700px;
  height: 125px;
  position: absolute;
  background-image: url(https://swampbrainz.neocities.org/imgs/miitopia/Miitopia_Logo.png);
  background-size: contain;
  background-repeat: no-repeat;
  filter: drop-shadow(1px 1px 0 #4d3126) drop-shadow(-1px 1px 0 #4d3126)
    drop-shadow(0 -1px 0 #4d3126) drop-shadow(1px 0 #4d3126);
  z-index: 500;
  margin-left: 125px;
  margin-top: 15px;
  animation: bounce 2s ease infinite;
}

#main {
  background-color: #e8e7cc;
  width: 92.5%;
  height: 91%;
  margin-left: auto;
  margin-right: auto;
  border: 8px solid #4d3126;
  margin-top: 2.5%;
  margin-bottom: 2.5%;
}

.characterbox {
  background-color: #fff;
  border: 5px solid #4d3126;
  border-radius: 30px;
  height: 300px;
  width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}

.idgaftit {
  font-family: 'akoane';
  font-size: 40px;
  text-align: center;
  margin-top: -45px;
  filter: drop-shadow(1px 1px 0 #e8e7cc) drop-shadow(-1px 1px 0 #e8e7cc)
    drop-shadow(0 -1px 0 #e8e7cc) drop-shadow(1px 0 #e8e7cc);
  color: #75323f;
}

.charaicon {
  margin-top: -35px;
  width: 200px;
  height: 200px;
  margin-left: 30px;
  background-image: url(https://swampbrainz.neocities.org/imgs/miitopia/papersaaure.png);
  background-size: 230px;
  padding-left: 45px;
  padding-top: 50px;
  transition: ease-out .5s;
}

.charaicon:hover {
  transform: rotate(5deg) scale(1.05);
}

.charaimg:hover {
  transform: rotate(-5deg) scale(1);  
}

::selection {
  color: #fff;
  background: #96aa53;
}
*::-webkit-scrollbar {
  height: 12px;
  width: 12px;
}
*::-webkit-scrollbar-track {
  border-radius: 8px;
  background-color: #c9d0c8;
  border: 3px outset #ffffff;
}
*::-webkit-scrollbar-track:hover {
  background-color: #b2bab1;
}
*::-webkit-scrollbar-track:active {
  background-color: #c9d0c8;
}
*::-webkit-scrollbar-thumb {
  border-radius: 19px;
  background-color: #96aa53;
  border: 3px outset #4f6359;
}
*::-webkit-scrollbar-thumb:hover {
  background-color: #90a180;
  border: 3px outset #5b733f;
}
*::-webkit-scrollbar-thumb:active {
  background-color: #7f9271;
}
@font-face {
  font-family: "akoane";
  src: url(/font/FOT-AokaneStd-EB.otf) format("opentype");
  font-weight: normal;
  font-style: normal;
}
@keyframes pop {
  from {
    transform: scale(1);
  }
  50% {
    transform: scale(0.96);
  }
  to {
    transform: scale(1);
  }
}
@keyframes bounce {
  0% {
    transform: skewX(0deg);
  }
  50% {
    transform: skewX(-7deg);
  }
  100% {
    transform: skewX(7deg);
  }
  100% {
    transform: skewX(0deg);
  }
}
@keyframes scrollbanner {
  0% {
    transform: translateX(0%);
  }
  50% {
    transform: translateX(-40%);
  }
  100% {
    transform: translateX(0%);
  }
}