/* styles.css */
html, body {
    margin: 0;
    font-family: 'Oswald', sans-serif;
    background: url('https://www.redactedhq.org/socials/RS_Website_Background.png') no-repeat center center fixed;
    background-size: cover;
    color: white;
    text-align: center;
  }
  
  .content {
    margin: 80px 20px;
    padding: 16px;
    font-family: "Oswald", sans-serif;
    color: white;
    flex: 1;
  }
  
  .current-page {
    color: #ccc;
    background-color: #CBC3E3;
    pointer-events: none;
  }
  
  .current-page:hover {
    background-color: #CBC3E3;
    color: #ccc;
  }
  
  .nav-links li a {
    color: white;
    text-decoration: none;
    font-family: 'Russo One', sans-serif;
  }
  
  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 70vh;
    padding: 20px;
    color: white;
    position: relative;
  }
  
  .hero h1 {
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 10px 0;
    letter-spacing: 3px;
  }
  
  .gray-text {
    color: rgba(255, 255, 255, 0.7);
  }
  
  .hero p {
    font-size: 1.2rem;
    max-width: 700px;
    line-height: 1.6;
    padding: 0 20px;
    opacity: 0.9;
  }
  
  .banner {
    width: 100%;
    max-width: 400px;
    display: block;
    margin-bottom: 20px;
  }
  
  .footer {
    background: #111;
    text-align: center;
    font-size: 14px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .right {
    text-align: right;
  }