/* General Styles */
body {
    font-family: 'Cinzel', serif;
    text-align: center;
    color: white;
    background-color: #000; /* OLED-friendly black */
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Centered Content */
  .container {
    animation: fadeIn 1s ease-in;
  }
  
  /* Links */
  a {
    color: white;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* Fade-in Animation */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  