/* Content-Type: text/css; charset=utf-8 */

/* HIDE MOUSE HIGHLIGHTING */

::-moz-selection {
  /* Code for Firefox */
  color: none;
  background: none;
}

::selection {
  color: none;
  background: none;
}

a {
  color: #d8dee9;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Courier New', monospace;
  line-height: 1.6;
  color: #00FFFF;
  background-color: #0a0f0f;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

h1 {
    text-align: center;
    color: #FF00FF;
    text-shadow: 0 0 10px #FF00FF;
}

h2 {
  margin: 10px 0;
  color: #00FFFF;
  text-shadow: 0 0 1px #00FFFF;
}


h3 {
  margin: 10px 0;
  color: #00FFFF;
  text-shadow: 0 0 10px #00FFFF;
}

h6 {
  margin: 5px 0;
  text-transform: uppercase;
}

p {
  font-size: 14px;
  line-height: 21px;
}


.home-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #00FFFF;
  background-color: #007F80;
  color: #00FFFF;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  margin: 20px auto;
  width: 50px;
  height: 50px;
}

.home-button .home-icon {
  width: 24px;
  height: 24px;
}

.home-button:hover {
  background-color: #00DBDB;
  box-shadow: 0 0 50px #00DBDB;
}

#konami {
  position: fixed; /* Changed from absolute to prevent layout shifts */
  top: 65%;
  left: 5%; /* Center it properly */
  visibility: hidden;
  width: 90%;
  /* z-index: 1000; Ensure it stays on top */
}