:root {
            --header-image: url('https://zalno.neocities.org/images/zalno/zalno_overlooking_the_city.png');
            --body-bg-image: url('https://zalno.neocities.org/images/backgrounds/orangegrid.png');
            --content-color: #43256E;
        }

        body {
            font-family: 'Nunito', sans-serif;
            margin: 0;
            background-color: #08031A;
            background-image: var(--body-bg-image);
            background-size: 200px;
            background-repeat: repeat;
            color: #fceaff;
            animation: diagonalScroll 20s linear infinite; /* Animation for diagonal scrolling */
        }

        @keyframes diagonalScroll {
          0% {
              background-position: 0 0;
          }
          100% {
                 background-position: 1000px 1000px; /* Adjust the values for speed and distance */
          }
        }

        * {
            box-sizing: border-box;
        }

        #container {
            max-width: 950px;
            margin: 0 auto;
        }

        a {
            color: #FFA500;
            font-weight: bold;
        }

        header {
            background-color: #370003;
            background-image: var(--header-image);
            background-size: cover;
            height: 170px;
        }

        nav {
            color: #f07f00; /* Orange color */
            font-weight: bold;
            text-decoration: none;
            background-color: #370003;
            padding: 10px 0;

        }

        nav ul {
            display: flex;
            justify-content: space-evenly;
            list-style: none;
            padding: 0;
            margin: 0;
            position: relative;
        }

        nav li {
            position: relative;
        }

        nav li a {
            color: #f07f00;
            font-weight: 800;
            text-decoration: none;
        }

        nav li a:hover {
            color: #a49cba;
            text-decoration: underline;
        }
        
        #spotify-player {
          margin: 0;
          padding: 0;
          margin-bottom: 0; /* Adjust if the nav has extra space */
        }

        /* Dropdown menu styling */
        .dropdown {
            display: none;
            position: absolute;
            background-color: #370003;
            min-width: 100px;
            box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
            z-index: 1;
        }

        .dropdown a {
            display: block;
            padding: 12px 16px;
            color: #f07f00;
            text-decoration: none;
        }

        .dropdown a:hover {
            background-color: #570003;
            color: #fff;
        }

        nav li:hover .dropdown {
            display: block;
        }

        #flex {
            display: flex;
        }

        aside {
            background-color: #430003;
            width: 200px;
            padding: 20px;
            font-size: smaller;
            text-align: center;
        }

        main {
            background-color: #720007;
            flex: 1;
            margin: 0;
            padding: 20px;
            order: 2;
        }

        footer {
            background-color: #370003;
            padding: 10px;
            text-align: center;
            color: white;
        }

        h1, h2, h3, h4 {
            color: #f07f00;
        }

        .box {
            background-color: #170003;
            border: 1px solid #f07f00;
            padding: 10px;
        }

        @media (max-width: 800px) {
            #flex {
                flex-wrap: wrap;
            }

            aside {
                width: 100%;
            }

            main {
                order: 1;
            }
        }