body {
  background-color: #000;
  font-family: "Times New Roman", Times, serif;
  color: #ffffff;
  cursor: url('https://digimechanoid.com/images/skull_cursor.png'), auto;
}

h1, h2, p {
  color: #ffffff;
}

a {
  color: #BB86FC;
  cursor: url('https://digimechanoid.com/images/pointer_cursor.png'), pointer;
}

.unifrakturmaguntia-regular {
  font-family: "UnifrakturMaguntia", cursive;
  font-weight: 400;
  font-style: normal;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
  gap: 20px;
}

.column {
  flex: 1;
  min-width: 280px;
  max-width: 30%;
  box-sizing: border-box;
}

.center-column {
  text-align: center;
}

.right-column {
  text-align: right;
}

.code {
  color: #03DAC6;
  cursor: pointer;
}

.code:hover {
  text-decoration: underline;
}

.adl {
  text-align: center;
  margin-top: 10px;
  font-size: 12px;
}
    
.left-list {
  text-align: left;
  display: inline-block; /* keeps it neat inside the centered column */
  margin: 0 auto;
}

input[type="text"],
input[type="search"] {
  width: 90%;
  padding: 5px;
  margin-top: 5px;
}

form {
  margin-bottom: 10px;
}

hr {
  border: 1px solid #444;
  margin: 20px 0;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
  }

  .column {
    max-width: 100%;
    text-align: center !important;
  }

  .right-column {
    text-align: center !important;
  }

  input[type="text"],
  input[type="search"] {
    width: 95%;
  }
}