   html, body {
            margin: 0;
            padding: 0;
            height: 100%;
            overflow: hidden;
        }

        body {
            font-family: Arial, sans-serif;
            color: #A30000;
            position: relative;
        }


        body::before {
            content: "";
            position: fixed;
            top: 0; left: 0;
            width: 100%;
            height: 100%;
            background-image: url('zdj.jpg');
            background-size: cover;
            background-position: center;
            z-index: -3;
            filter: brightness(0.4); 
        }

        /* Ciemna nakładka nad obrazem */
        body::after {
            content: "";
            position: fixed;
            top: 0; left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            z-index: -2;
        }

    
        #rain-canvas {
            position: fixed;
            top: 0; left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

    .speaker-toggle {
    position: fixed;
    top: 15px;
    left: 60px; /* so it doesn't overlap your back link */
    font-size: 1.5rem;
    color: #A30000;
    cursor: pointer;
    z-index: 1000;
    user-select: none;
    background-color: rgba(18, 18, 18, 0.6);
    padding: 6px 10px;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
	margin-left: 95px;
}

.speaker-toggle:hover {
    background-color: #A30000;
    color: white;
}

.speaker-toggle.off {
    opacity: 0.5;
}

        .content {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 100vh;
            justify-content: center;
            text-align: center;
            padding: 20px;
            z-index: 0;
        }

        header {
            font-size: 5rem;
            font-family: 'UnifrakturCook', cursive;
            letter-spacing: 2px;
            margin-bottom: 40px;
				text-shadow:
			 -2px -2px 0 black,
			  2px -2px 0 black,
			 -2px  2px 0 black,
			  2px  2px 0 black;
			  z-index: 9999;
			  user-select: none;
		}
      
		
		header:hover {
			color: black;
			text-shadow:
			 -2px -2px 0 black,
			  2px -2px 0 black,
			 -2px  2px 0 black,
			  2px  2px 0 black;
		}

        nav {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
			user-select: none;
        }

        nav a {
            color: #a30000;
            text-decoration: none;
            font-size: 1.8rem;
            padding: 10px 15px;
            border-radius: 8px;
            transition: background-color 0.3s ease, color 0.3s ease;
            font-family: 'UnifrakturCook', cursive;
            user-select: none;
			text-shadow:
			 -2px -2px 0 black,
			  2px -2px 0 black,
			 -2px  2px 0 black,
			  2px  2px 0 black;
			  user-select: none;
        }

        nav a:hover {
            background-color: rgba(163, 0, 0, 0.7);
            color: #1A0000;
			text-shadow: none;
			
        }

        footer {
            margin-top: 40px;
            font-size: 1.2rem;
            color: #888;
        }


.back-link {
  position: fixed;
  top: 15px;
  left: 15px;
  font-family: 'UnifrakturCook', cursive;
  font-size: 1.5rem;
  color: #A30000;
  text-decoration: none;
  background-color: rgba(18, 18, 18, 0);
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 1000;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  user-select: none;
  text-shadow:
			 -2px -2px 0 black,
			  2px -2px 0 black,
			 -2px  2px 0 black,
			  2px  2px 0 black;
}

.back-link:hover {
  background-color: #A30000;
  color: #121212;
  text-shadow: none;
}

img {
  z-index: 10;
  user-select: none;
}