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

body {
  font-family: "BIZ UDGothic", monospace;
  font-size: 16px;
  background: #000000;
  background-image: url('https://in-betw33n.neocities.org/bg.png');
  background-repeat: repeat;
  color: #ffffff;
  margin: 0;
  width: 100%;
}

a {
  color: #d300f5;
  text-decoration: none;
}

.content-wrap {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 1em 0;
  box-sizing: border-box;
}

header {
  background: transparent;
  padding: 1em;
  text-align: center;
}

nav {
  background: #000000;
  text-align: center;
  padding: 0.5em;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 0.5em;
}

footer {
  background: transparent;
  padding: 1em;
  text-align: center;
}

.layout {
  display: flex;
  gap: 1em;
  box-sizing: border-box;
  justify-content: center;
  max-width: 100%;
}

aside, main {
  flex-direction: column;
  padding: 16px;
  border: 0px solid #ccc;
  box-sizing: border-box;
  user-select: none
}

.enter-btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.main.centered {
  display: flex;
  justify-content: center;
  align-items: center;
}

.centered {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.hidden {
  display: none !important;
}

.enter-btn {
  max-width: 100%;
  box-sizing: border-box;
  padding: 40px 100px;
  font-family: 'Courier Prime', monospace;
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 15px;
  color: #ffffff;
  background-color: #000000;
  border: 3px solid #ffffff;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 0 #ffffff;
  text-decoration: none;
  display: inline-block;
}

.enter-btn-mini {
  padding: 10px 30px;
  font-family: 'Courier Prime', monospace;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 4px;
  color: #ffffff;
  background-color: #000000;
  border: 3px solid #ffffff;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 0 #ffffff;
  text-decoration: none;
  display: inline-block;
}

.main.centered h1 {
  text-align: center;
  width: 100%;
}

.enter-btn-mini:hover {
  background-color: #ffffff;
  color: #000000;
  transform: translateY(-4px);
  box-shadow: 0 12px 0 #ffffff;
}

.enter-btn-mini:active {
  transform: translateY(4px);
  box-shadow: 0 4px 0 #ffffff;
}

.enter-btn:hover {
  background-color: #ffffff;
  color: #000000;
  transform: translateY(-4px);
  box-shadow: 0 12px 0 #ffffff;
}

.enter-btn:active {
  transform: translateY(4px);
  box-shadow: 0 4px 0 #ffffff;
}

details {
  background-color: #000;
  border: 3px solid #fff;
  border-radius: 10px;
  margin-bottom: 10px;
  font-family: 'Courier Prime', monospace;
}

summary {
  padding: 12px 20px;
  cursor: pointer;
  color: #fff;
  font-weight: bold;
  letter-spacing: 2px;
  list-style: none;
  user-select: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::marker {
  content: "";
}

summary:hover {
  background-color: #fff;
  color: #000;
}

details[open] summary {
  background-color: #fff;
  color: #000;
}

.p2 {
  color: #a8d8ff;
  text-align: right;
}

.left  { flex: 0 0 20%; background: #000000; }
.main  { flex: 0 0 60%; background: #000000; }
.right { flex: 0 0 20%; background: #000000; }

.left, .right {
  position: sticky;
  top: 80px;
  align-self: flex-start;
}

.main.centered h1 {
  text-align: center;
  width: 100%;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .layout {
    flex-wrap: wrap;
    gap: 0;
  }
  
   .enter-btn {
    font-size: 28px;
    padding: 20px 40px;
    letter-spacing: 8px;
   }  
    
  .left, .right {
    position: static;
    flex: 1 1 50%;
    min-width: 0;
    width: 50%;
  }
  .left { order: 1; }
  .right { order: 2; }
  .main {
    flex: 1 1 100%;
    order: 3;
  }
}

#arrow {
  color: #ffffff;
  font-size: 20px;
  margin-left: 6px;
  user-select: none;
  animation: blink 2.5s infinite;
}

@keyframes blink {
  0%, 50%   { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.red  { color: #ff5555; }
.blue { color: #a8d8ff; }
