        :root {
            --blue1: #64293e;
            --blue2: #64293e;
            --white1: #ffffff;
            --white2: #89888b;
            --black1: #202d42;
            --orange1: #64293e;
        }

        BODY {
            padding: 0px;
            margin: 0px;
            background: var(--white1);
            color: var(--black1);
            font-family: sans-serif;
        }



       
        /* --- Rest of your styles --- */
        H2 {
            padding: 5px 0px 5px 20px;
            background: var(--blue1);
            color: var(--white1);
        }

        P {
            background: var(--white2);
            color: var(--white1);
            margin: 10px;
            padding: 15px;
            border-radius: 10px;
        }

        .nav-links {
            padding: 10px 20px;
        }

        A:link, A:visited {
            color: var(--orange1);
            text-decoration: none;
        }

        A:hover {
            font-weight: bold;
        }

        div.copyright {
            border-radius: 30px 30px 0px 0px;
            background: var(--blue1);
            text-align: center;
            color: var(--white1);
            padding: 10px;
            margin-top: 20px;
            font-size: 10px;
        }

		div.logo {
			position: absolute;
			top: 0;
			left: 0;
            border-radius: 0px 0px 30px 0px;
            background: var(--white2);
            text-align: center;
            color: var(--white1);
            padding: 2px 20px 2px 10px;
            font-weight: bold;
            width: 60px;
            font-size: 40px;
        }

        H1{
            padding: 0px 0px 0px 80px;
            border: none;
            color: var(--blue1);
            text-align: center;
        }
