.right {
  flex: 1;
}

.middle {
  flex: 3;
}

.sticker-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
}

.sticker {
  width: 80%;
  display: block;
  transition: transform 0.1s ease-in-out;
}

.sticker:hover {
  transform: scale(1.05);
}

h1, p, a {
  text-align: center;
}

h1 {
  font-size: 24px;
}

.status {
  text-align: center;
}

.update-wrap {
  transform: skew(0deg, 10deg);
  display: inline-block;
  animation: float 2s ease-in-out infinite;
  transition: transform 0.3s ease;
  animation: float 1.5s ease-in-out infinite, flicker 10s infinite;
  margin-top: 7vh;
}

.update-container, .commission-section {
  background-color: white;
  padding: 10px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border: 2px solid black;
  overflow-y: auto;
}

.commission-section p {
  text-align: left;
  line-height: 1.7;
}

.click {
  font-size: large;
  color: #99ccff;
}

@keyframes float {
  0%, 100% { transform: translateY(0) skew(0deg, 10deg); }
  50% { transform: translateY(-8px) skew(0deg, 10deg); }
}

@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { opacity: 1; }
  20%, 22%, 24%, 55% { opacity: 0.85; }
}

.bottom {
  text-align: center;
}

.bottom marquee {
  margin-top: 20px;
}

.form {
  text-align: center;
  padding: 10px;
  background: linear-gradient(135deg, #ff66ff 0%, #00ffff 100%);
  font-family: inherit;
  border: 2px outset white;
  border-radius: 10px;
  transition: 0.3s;
  width: fit-content;
  margin: auto;
}

.form a {
  color: white;
  font-size: x-large;
}

.form:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.form a:hover {
  text-decoration: none;
}

.sheet {
  width: 32%;
}

.warning {
  background-color: #3366ff;
  padding: 5px;
  color: white;
}

/* mobile wip */
@media (max-width: 1000px) {
  .three-column-layout {
    flex-direction: column;
    gap: 0px;
  }

  .right, .middle {
    width: 100%;
    flex: 1;
  }

  .middle {
    order: 2;
  }

  .right {
    order: 1;
  }
  
  .update-wrap {
    animation: none;
    transform: skew(0);
    width: 100%;
    margin-top: 10px;
  }
}

@media (max-width: 500px) {
  .sheet {
    width: 100%;
  }
}