/* Hello to anyone who's reading this, you are not supposed to be here. Get out, P-Zack */
@font-face {
  font-family: 'Cardo99s';
  src: url('../fonts/Cardo99s.woff2') format('woff2'),
       url('../fonts/Cardo99s.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Dharma Punk';
  src: url('../fonts/dpr.woff2') format('woff2'),
       url('../fonts/dpr.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
  width: 100%;
}
body {
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  color: #000000;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media (prefers-color-scheme: dark) {
  body {
    background-color: #1a1a1a;
    color: #ffffff;
  }
}
main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}
.content {
  max-width: 600px;
}
h1 {
  font-family: 'Cardo99s', serif;
  margin-bottom: 20px;
  font-size: 2rem;
}
p {
  margin: 5px 0;
  font-size: 1.1rem;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.links {
  margin-top: 20px;
  font-size: 1.1rem;
}
.links a {
  margin: 0 5px;
}
footer {
  font-family: 'Dharma Punk', sans-serif;
  text-align: center;
  padding: 20px;
  background-color: #f8f8f8;
  color: #000000;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media (prefers-color-scheme: dark) {
  footer {
    background-color: #0d0d0d;
    color: #ffffff;
  }
}
.footer-title {
  font-size: 1.5rem;
  margin-bottom: 5px;
}
.footer-subtitle {
  font-family: 'Cardo99s', serif;
  font-size: 0.5rem;
  color: #666;
  transition: color 0.3s ease;
}
@media (prefers-color-scheme: dark) {
  .footer-subtitle {
    color: #999;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.5rem;
  }
  
  p {
    font-size: 1rem;
  }
  
  .links {
    font-size: 1rem;
  }
  
  .footer-title {
    font-size: 1.8rem;
  }
  
  .footer-subtitle {
    font-size: 0.5rem;
  }
}