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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0a0a0a;
  color: #f0f0f0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  padding: 2rem;
  max-width: 800px;
  width: 100%;
}

header {
  margin-bottom: 3rem;
}

.logo {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ff4500;
  text-shadow: 0 0 20px rgba(255, 69, 0, 0.5);
}

.tagline {
  font-size: 1.2rem;
  color: #aaa;
  margin-top: 0.5rem;
  font-style: italic;
}

.content {
  border-top: 1px solid #333;
  padding-top: 2rem;
}

.content h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #fff;
}

.content p {
  font-size: 1.1rem;
  color: #bbb;
  line-height: 1.6;
}
#hidden-link{
  color: #bbb;           /* Makes the text white */
  text-decoration: none;  /* Removes the underline */
}
#hidden-link:hover{
  color: #bbb;
  cursor: text
}
