.press-start-2p-regular {
  font-family: "Press Start 2P", system-ui;
  font-weight: 400;
  font-style: normal;
}
.vt323-regular {
  font-family: "VT323", monospace;
  font-weight: 400;
  font-style: normal;
}

body {
  min-height: 100vh; 
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, black, #001f00); 
}

h1 {
  color: greenyellow;
  font-family: "Press Start 2P";
  font-weight: 400;
  text-align: center;
  margin-bottom: 20px;
}

p {
  color: greenyellow;
  font-family: "VT323", monospace;
  font-size: 30px;
  text-align: center;
  margin-bottom: 50px;
}

.box {
  border: 5px solid white;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 500px;
  font-family: "VT323", monospace;
  font-size: 25px;
  padding: 20px;
  margin-bottom: 30px;
}

.buttons {
  display: flex;
  justify-content: space-evenly; 
  width: 60%; 
  max-width: 500px;
}

.buttons a {
  text-decoration: none;
  color: white; 
  font-family: "VT323", monospace;
  font-size: 25px;
  padding: 10px 20px;
  background: black;
  border: 2px solid white;
  cursor: pointer;
}

.buttons a:hover {
  color: greenyellow;
  border-color: greenyellow;
}
#typewriter::after {
  content: '|';
  display: inline-block;
  margin-left: 2px;
  animation: blink 0.7s steps(1) infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}