@charset "UTF-8";
/* CSS Document */
        @import url('https://fonts.googleapis.com/css2?family=Cinzel&family=Spectral&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
p {
    margin-bottom: 20px; 
}

        body {
            background-color: #0d0d0d;
            color: #c0a080;
            font-family: 'Spectral', serif;
        }

        header {
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: #e0b080;
            text-shadow: 2px 2px 5px black;
            text-align: center;
        }

        nav {
            display: flex;
            justify-content: flex-start;
            background: #222;
            padding: 10px;
        }

        nav a {
            color: #c0a080;
            text-decoration: none;
            padding: 12px 20px;
            font-size: 18px;
            transition: 0.3s;
        }

        nav a:hover {
            color: #e0b080;
            text-shadow: 0px 0px 5px #ffcc99;
        }
	
   

        .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 24px;
            color: #fff;
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
        }

        .mobile-nav {
            display: none;
            flex-direction: column;
            align-items: center;
            background: #222;
            padding: 10px;
            position: absolute;
            top: 60px;
            right: 0;
            width: 100%;
        }

        .mobile-nav a {
            color: #c0a080;
            text-decoration: none;
            padding: 12px 20px;
            font-size: 18px;
            transition: 0.3s;
            display: block;
        }

        .mobile-nav a:hover {
            color: #e0b080;
            text-shadow: 0px 0px 5px #ffcc99;
        }

        @media screen and (max-width: 768px) {
            nav { display: none; }
            .menu-toggle { display: block; }
            .mobile-nav { display: none; }
            .mobile-nav.active { display: flex; }
        }

        .container {
            max-width: 900px;
            margin: 30px auto;
            padding: 20px;
            background: #121212;
            border-radius: 8px;
            box-shadow: 0px 0px 15px rgba(255, 204, 153, 0.2);
            text-align: left;
     
        
        }
        h3 {
            color: #e0b080;
            
            margin-top: 30px;
        }
        ul {
            list-style: none;
            padding: 0;
       
            }
		  .indented {
            padding-left: 40px; /* Adjust the value to control indentation */
        }
   
 
