@font-face {
  font-family: 'pc-98';
  src: url('/pc-9800.ttf');
}

body {
  font-family: pc-98;
  background-image: url('/tempbg.png');
  background-repeat: no-repeat;
  z-index: -20;
  height: 100vh;
  color: white;
}

.webring-container {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.webring a {
  max-height: 100%;
  padding-right: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
  animation: webring-marquee;
  animation-iteration-count: infinite;
  animation-duration: 7s;
  animation-timing-function: linear;
}

.webring {
  margin: 16px 16px 16px 0;
  max-height: 100px; 
  width: 50%;
  overflow: hidden;
}

.wikipe {
  visibility: hidden;
  position: fixed;
}

.page-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.site-header {
  font-size: 36px; 
  font-weight: bold;
  color: #FF4F86;
  font-smooth: never;
  z-index: 1;
  align-self: center;
  margin-top: 8px;
}

.page-body {
  flex-grow: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.site-header-outline {
  font-size: 36px; 
  font-weight: bold;
  -webkit-text-stroke-color: #FF4F86;
  -webkit-text-stroke: 15px white;
  align-self: center;
  font-smooth: never;
  position: absolute;
  margin-top: 8px;
  z-index: -1;
}

.cluster-row {
  display: flex;
  justify-content: center;
}

.cluster-row > a {
  font-family: pc-98;
  color: #FF4F86;
  background-color: white;
  font-size: 24px;
  width: 33%;
  text-align: center;
  padding: 4px;
  margin: 0px 3px 6px 3px;
  text-decoration: none;
}

.home-summary {
  flex-grow: 1;
  background-color: white;
  color: #FF4F86;
  margin: 0 4px 4px 4px;
  text-align: left;
}


.home-summary p {
    margin: 0 20px 0px 20px;
    font-size: 24px;
  }

  .home-summary h1 {
      margin: 20px 20px 0px 20px;
      text-align: center;
  }

.post-container {
  display: flex;
  justify-content: center;
  font-size: 24px;
}

.post-timestamp {
  margin-right: 8px;
  margin-left: 10px;
  color: red;
}

.post-container span, a {
  margin-top: 6px;
  display: inline-block;
  align-self: center;
}

.nav-cluster {
  display: flex;
  flex-direction: column;
  align-self: center;
  width: 90%;
  margin-bottom: 8px;
}

.mobile-users-die {
  margin-bottom: 8px;
  width: 60%;
}

.mobile-die-container {
  display: flex;
  width: 100%;
  flex-direction: row-reverse;
}

.aoi-sora {
  position: fixed;
  bottom: -120px;
  left: -100px;
  transform: scale(0.5);
  animation-duration: 0.75s;
  animation-iteration-count: infinite;
  visibility: hidden;

}

#kickflipper {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
}

.skewflipper {
  transform: skewX(45deg);
}

@media (width >= 450px) {
  .mobile-users-die {
    visibility: hidden;
  }
}

@media (width >= 768px) {
  .page-body {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: row;
  }

  .home-summary {
    flex-grow: 2;
    background-color: white;
    color: #FF4F86;
    margin: 0 4px 0 4px;
    text-align: center;
    padding: 0 16px 0 16px;
    margin-bottom: 100px;
  }

  .home-summary h1 {
      font-size: 48px;
  }

  .home-summary p {
    font-size: 24px;
    text-align: left; 
  }

  .aoi-sora {
    position: fixed;
    bottom: -60px;
    left: -15px;
    transform: scale(1.0);
    animation-duration: 0.75s;
    animation-iteration-count: infinite;
    visibility: visible;
  }

  .webring-container {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .webring a {
    max-height: 100%;
    padding-right: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
    animation: webring-marquee;
    animation-iteration-count: infinite;
    animation-duration: 7s;
    animation-timing-function: linear;
  }

  .webring {
    margin: 16px 16px 16px 0;
    max-height: 100px; 
    width: 30%;
    overflow: hidden;
  }


  .wikipe {
    position: absolute;
    right: 75px;
    top: 100px;
    visibility: visible;
  }

  .nav-cluster {
    width: 30%;
  }

  .cluster-row {
    min-width: 25%;
    overflow-wrap: break-word;
    flex-direction: column;
    align-self: flex-start;
    width: auto;
    display: flex;
  }

  .cluster-row:last-of-type {
    flex-direction: column;
    align-self: flex-end;
    
    margin-bottom: 100px;
  }

  .cluster-row a {
    align-self: center;
    width: 90%;
    font-size: 48px;
    padding-top: 16px;
    padding-bottom: 16px;
    font-weight: bold;
    margin: 8px;
    
  }

  #first-left {
    margin-top: 0px;
  }

  #last-right {
    margin-bottom: 0px;
  }


  .site-header {
    font-size: 72px;
  }

  .site-header-outline {
    font-size: 72px; 
    font-weight: bold;
    -webkit-text-stroke-color: #FF4F86;
    -webkit-text-stroke: 25px white;
    align-self: center;
    font-smooth: never;
    position: absolute;
    margin-top: 8px;
    z-index: -1;
  }

  #kickflipper {
    visibility: visible;
    animation-duration: 0.75s;
    animation-iteration-count: infinite;
  }
}

@keyframes webring-marquee {
  from {
    transform: translateX(600%);
  }

  to {
    transform: translateX(-300%);
  }
}

@keyframes shes-rainbow {
  from {
    filter: hue-rotate(0);
  }

  to {
    filter: hue-rotate(360deg);
  }
}

@keyframes rotate-flipper {
  from {
    transform: rotateZ(0);
  }

  to {
    transform: rotateZ(360deg);
  }
}
