/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  background-color: #0F1020;
  color: #000000;
  font-family: 'Geist Mono', monospace;
  line-height: 1.6;
}

/* Container for center-aligned content */
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
  min-height: 100vh;
}

/* Headings: futuristic + sleek */
h1, h2, h3 {
  font-family: 'Rajdhani', sans-serif;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: 3rem;
  color: #bf98a0;
}

h2 {
  font-size: 2rem;
  color: #BCCCE0;
}

h3 {
  font-size: 1.5rem;
  color: #0099cc;
}

/* Body text */
p {
  font-size: 1rem;
  color: #cccccc;
  max-width: 600px;
  margin-bottom: 1.5rem;
}

.monospace {
  font-family: 'IBM Plex Mono', monospace;
  white-space: pre-wrap; /* Keeps line breaks as they are */
  color: white;
  text-align: center;
}

/* Lists (optional) */
ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

li {
  margin: 0.5rem 0;
}

/* Links */
a {
  color: #00cfff;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #00ffe7;
  text-decoration: underline;
}

/* Horizontal rules, just in case */
hr {
  border: none;
  border-top: 1px solid #333;
  margin: 2rem 0;
}

img {
	
}

.linkbutton {
    width: 50px;
    height: 50px;
}
