* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, #000000 40%, #00008b 100%);
}

.center {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.sub-link {
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
}

.sub-link::before {
  content: '';
}

.sub-link:hover::before {
  content: '› ';
}

p {
  font-family: 'Courier New', monospace;
  font-size: 3rem;
  font-weight: bold;
  color: #ffffff;
}
