@keyframes main-slide-in {
  from { transform: translate(-50%, 50%); opacity: 0; }
  to { transform: translate(-50%, -50%); opacity: 1; }
}

@keyframes slide-in {
  from { transform: translate(175%, 0%); opacity: 0; }
  to { transform: translate(0%, 0%); opacity: 1; }
}

@keyframes slide-out {
  from { transform: translate(0%, 0%); opacity: 1; }
  to { transform: translate(-175%, 0%); opacity: 0; }
}

body {
  background-color: #000;
  background-image: url("/img/BG5.png");
  background-size: cover;
  cursor: url("/misc/OLD.png"), auto;
}

.cursor-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: url("/misc/OLD.png"), auto;
}

.main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 700px;
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  opacity: 0;
  animation: main-slide-in 1s ease-in-out 0.5s;
  animation-fill-mode: forwards;
}

.header {
  width: 100%;
  height: 7%;
  background-color: #6e99c9;
  border: 1px solid #000;
}

.middle {
  width: 100%;
  height: 82%;
  position: relative;
}

.footer {
  width: 100%;
  height: 8%;
  background-color: #ccc;
  border: 1px solid #000;
  display: flex;
}

p, a, b, u, h1, h2, h3, h4, h5, h6 {
  text-align: center;
  font-family: "Comic Sans MS";
}

a {
  transition: 0.25s;
}

#a:hover {
  font-size: 1.2rem;
}

.header-link {
  color: #fff;
  height: 100%;
  font-size: 1.25rem;
  line-height: 0.5rem;
}

.button:hover {
  text-decoration: underline;
}

.page {
  position: absolute;
  background-color: #eee;
  border: 1px solid #000;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  display: flex;
  opacity: 0;
  z-index: 1;
}

#p0 {
  opacity: 1;
  z-index: 2;
}

.page-content {
  width: 95%;
  height: 95%;
  background-color: transparent;
  position: relative;
  margin: auto;
  overflow: scroll;
}

.text-bg {
  background-color: #fff;
  border: 1px solid #000;
  padding: 0.1rem;
}

.comm-img {
  display: block;
  margin: auto;
  margin-bottom: 1rem;
  width: 90%;
  border: 1px solid #000;
  transition: 0.25s;
}

.comm-img:hover {
  width: 95%;
}

.about-1 {
  height: 40%;
  display: flex;
}

.about-2 {
  margin-top: 1rem;
}

.about-pfp {
  height: 100%;
  margin-right: 1rem;
  border: 1px solid #000;
}

.stamps {
  height: 90%;
  margin: auto;
}

.stamp {
  height: 100%;
}

#noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#p1-C {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}