/* Reset defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'PPTelegraf';  /* The name you'll use in CSS */
  src: url('fonts/PPTelegraf-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* Dark page styling */
body {
  background-color: #000;     /* Black background */
  color: #fff;                /* White text */
  font-family: PPTelegraf, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;          /* Occupies full viewport height */
  text-align: center;
  /* Subtle text shadow for a sleek look */
  text-shadow: 0 1px 2px rgba(0,0,0,0.7);
}



/* Large Title */
h1 {
  font-size: 5rem;
  font-weight: 300;           /* Lighter font weight for minimalism */
  letter-spacing: 1px;
}

/* Subtitle */
h2 {
  font-size: 1.2rem;
  font-weight: 200;           /* Extra-light weight */
  color: #aaa;                /* Slightly faded color */
  margin-bottom: 1rem;        /* Space before links/buttons */
}

/* Container for links/buttons */
.links {
  font-size: 1rem;
}

/* Individual link styling */
.links a {
  text-decoration: none;
  color: #fff;                /* White text */
  margin: 0 1rem;             /* Space between links */
  transition: color 0.3s ease;
}

/* Hover effect for links */
.links a:hover {
  color: #ccc;
}


