* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 12pt;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    width: 100%;
    background-color: #252525;
    color: white;
    background-image: linear-gradient(45deg, #0e0021, #06000f, #0f0f0f); /* Dark purple linear gradient */
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: text-wrap 2s ease;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

html, body {
    height: auto;
    min-height: 100vh;
}
        h1, h2 {
            color: #b145ff;
        }
        h1 {
            font-size: 2em;
        }
        h2 {
            font-size: 1.5em;
            margin-top: 20px;
        }
        p {
            margin-bottom: 15px;
        }
        a {
            color: #0066cc;
            text-decoration: none;
        }
        a:hover {
            text-decoration: underline;
        }
        .last-updated {
            font-style: italic;
            color: #555;
        }

        .navigate-button {
    position: static !important; /* Use absolute positioning */
    display: flex; /* Use flexbox to align items */
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    top: 20px;         /* Adjust the distance from the top */
    left: 10px;        /* Adjust the distance from the left */
    z-index: 1000;     /* Make sure it appears above other elements */
    padding: 10px 15px;
    border: 2px solid #6900c5;
    background-color: #1d003e;
    box-shadow: 0 0 10px rgba(0, 30, 255, 0.7); /* Blue glow */
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease; /* Smooth transition */
}

.navigate-button:hover {
    background-color: #100023;
    border-color: #490089;
    cursor: pointer; /* Change cursor to pointer */
    transform: scale(1.1);
}

.home-button-icon {
    width: 20px;
    height: 20px;
    image-rendering: crisp-edges;
    margin: 5px;
    margin-right: 10px;
    left: 0;
    transition: all 0.5s ease;
}

.navigate-button:hover .home-button-icon {
    left: 20px; /* Move 5px to the right on hover */
}