body {
  font-family: monospace;
  background-color: rgb(0, 0, 0);
  height: 100vh;
  margin: 0;
  position: relative;
}

.textbox {
  font-family: monospace;
  text-align: left;
  font-size: 16px;
  color: rgb(255,255,255);
  background-color: rgb(0, 0, 0);
  height: 320px;
  width: 640px;
  border: 24px solid rgb(255,255,255);
  border-radius: 24px;
  padding: 12px;


  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); 

  resize: none;
  opacity: 0;
  pointer-events: none;

  transition: all 0.75s ease;
}

.btn {
  height: 175px;
  width: 175px;
  border-radius: 50%;
  border: none;
  color: rgb(0, 0, 0);
  background-color: white;
  opacity: 1;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); 

  transition: left 0.75s ease;
}

.button-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 0px;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);


  opacity: 0;
  pointer-events: none;

  transition: all 0.75s ease;
}

.button-grid button {
  font-family: monospace;
  text-align: center;
  font-size: 16px;
  color: rgb(255,255,255);;
  background-color: rgb(0, 0, 0);
  border-color: rgb(255,255,255);
  height: 100px;
  width: 150px;
  border-width: 3px;
  border-radius: 12px;
  padding: 12px;
}

a {
  color: #00ffff; /* bright cyan or any color you want */
  text-decoration: underline;
}

a:visited {
  color: #00ffff; 
}

a:hover {
  color: #ffcc00; 
}

a:active {
  color: #ff6600;
}