html, body {
    margin: 0;
    padding: 0;
}

@font-face {
  font-family: pixifont;
  src: url(fonts/Pixifont2-Regular.ttf);
}

body {
  color: #00ffff;
  font-size: 16px;
  font-family: pixifont;
  line-height: 1.1rem;
}

::-webkit-scrollbar {
  width: 8px; 
}

*, *::before, *::after { box-sizing: border-box; }

* {
  scrollbar-width: thin; 
}

a {
  color: #00ffff;
  font-family: pixifont;
}

h1 {
  color: #00ffff;
  font-family: pixifont;
  font-size: 64px;
  font-weight: normal;
  letter-spacing: 1px;
  padding-bottom: 4px;
}

h2 {
  background: #000000;
  color: #00ffff;
  font-weight: 600;
  font-size: 13px;
  padding: 2px 4px;
  display: table;
}

h3 {
  color: #00ffff;  
  border-bottom: 1px dashed #00ffff;
    margin: 0;
    margin-top: 1.5rem;
    font-size: 12px;
    padding-bottom: 3px;
    margin-bottom: 0.5rem;
}

/* this one here exists for the entry page*/
.enter {
    background: #000000;
    border: 1px solid #00ffff;
    width: 560px;
    height: 560px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    flex-direction:column;
    line-height: 60px;
    justify-content: center;
}





----------------------------------
.outer, .title, .header, .banner, .profile, .side, .avatar, .fish, .menu, .main {
    border: 1px solid #00ffff;
    box-sizing: border-box;
    vertical-align: top;
    background-repeat: no-repeat;
}

.outer {
    background: #000000;
    width: 881px;
    height: 880px;
    padding: 3px;
    margin: auto;
    background-image: url('img/footer.png');
    background-repeat: repeat-x;
    background-position-y: 864px;
}

.outer > div {
    float: left;
}

.title {
    height: 139px;
    width: 268px;
    display: inline-block;
    margin-right: 4px;
    font-size: 32px;
    letter-spacing: 2px;
    line-height: 80px;
    text-align: center;
}

.header {
    height: 80px;
    width: 600px;
    display: inline-block;
    line-height: 16px;
    text-align: center
}

.banner {
    height: 55px;
    width: 600px;
    display: inline-block;
    margin-top: 4px;
}

.marquee {
    width: 100%;
    height: 60%;
    display: inline-block;
    padding: 10px;
}

.avatar {
    height: 359px;
    width: 393px;
    display: inline-block;
    margin-top: 4px;
    margin-right: 4px;
    background-image: url('images/azaiconpink.png');
    background-repeat: repeat-x;
    font-size: 27px;
    letter-spacing: 2px;
    line-height: 130px;
    text-align: center;
}

.side {
    border: none;
    width: 145px;
    display: inline-block;
}
.profile {
    height: 359px;
    width: 100%;
    padding: 3px;
    margin-top: 4px;
}
.about-box {
    border: none;
    font-size: 16px;
    padding: 0 4px;
}

----------------------------------
@media only screen and (max-device-width: 1366px) {
  .parallax {
    background-attachment: scroll;
  }
}

.animatedBackground {
  width: 100%;
  min-height: 100vh;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 10px;
  box-sizing: border-box;
  background: url("images/magentanebula.png");
  background-repeat: repeat;
  background-position: 0 0;
  background-size: auto 100%;

/*adjust s value for speed*/
  animation: animatedBackground 500s linear infinite;
}

@keyframes animatedBackground {
  from {
    background-position: 0 0;
  }
/*use negative width if you want it to flow right to left else and positive for left to right*/
  to {
    background-position: -10000px -10000px;
  }
}
