html {
  background-color: black;
  color: red;
  background-image: url("https://www.shutterstock.com/image-photo/dark-forest-night-scary-woods-600nw-2029491560.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

body {
  margin: 0;
  padding: 0;
}

/* Title */
#titletext {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

h1 {
  color: red;
  font-style: italic;
  font-size: 50px;
  text-shadow: 0px 0px 10px white;
  margin-bottom: 0px;
}

#container {
  position: relative;
  flex-direction: column;
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

#maintext {
  position: relative;
  width: 400px;
  background-color: black;
  border: 2px inset black;
  padding: 20px;
  overflow-wrap: break-word;
  overflow: visible;
}

#crow {
  margin-top: -100px;
}


#smokecloud {
  position: absolute;
  bottom: -25px;
  left: -55px;
  pointer-events: none;
  z-index: 5;
  opacity: 0.85;
}

#smokecloud2 {
  position: absolute;
  bottom: -25px;
  toP: -30px;
  left: 310px;
  pointer-events: none;
  z-index: 5;
  opacity: 0.85;
}

#maintext > *:not(#smokecloud) {
  position: relative;
  z-index: 2;
  
}


.center {
  text-align: center;
}

/* Gate box */
.dhuma-gate {
  background: rgba(0, 0, 0, 0.92);
  padding: 22px 24px;
  max-width: 820px;
}

.dhuma-title {
  margin: 0 0 14px 0;
  color: #ff2b2b;
  font-family: "Courier New", Courier, monospace;
  line-height: 1.25;
  text-shadow: 0 0 0 #000;
}

.dhuma-form {
  margin: 0;
}

.dhuma-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #ff2b2b;
  font-family: "Courier New", Courier, monospace;
  font-size: 15px;
  line-height: 1.25;
  margin: 14px 0;
  cursor: pointer;
  user-select: none;
}

.dhuma-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 6px;
  accent-color: #ff2b2b;
}

.dhuma-locked {
  margin-top: 18px;
  color: #b80000;
  font-family: "Courier New", Courier, monospace;
  opacity: 0.9;
  text-align: center;
}

.dhuma-enter {
  margin-top: 18px;
  padding: 10px 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: #ff2b2b;
  background: #000;
  border: 2px solid #ff2b2b;
  cursor: pointer;
}

.dhuma-enter:hover {
  filter: brightness(1.15);
}

#navlinks {
  margin-top: 20px;
  text-align: center;
  font-family: "Courier New", monospace;
}

#navlinks a {
  color: red;
  text-decoration: none;
  font-size: 18px;
  padding: 5px 10px;
}

#navlinks a:hover {
  text-shadow: 0 0 6px white;
}