html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Georgia', serif;
    color: #fff;
    scroll-behavior: smooth;
    background-color: rgba(190, 133, 255, 0.1);
    text-shadow: 1px 1px 3px darkred;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('A_visually_striking,_atmospheric_fantasy_landscape.png');
    background-size: cover;
    background-position: center;
    opacity: 0.7;
    z-index: -1;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(90,20,150,0.6);
    padding: 1rem;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav {
    position: fixed;
    top: 0;
    left: -200px;
    height: 100%;
    width: 200px;
    background: rgba(0,0,0,0.9);
    flex-direction: column;
    padding-top: 60px;
    transition: left 0.3s ease;
    display: flex;
}

nav.active {
    left: 0;
}

nav a {
    color: lightblue;
    text-decoration: none;
    margin: 1rem;
    font-size: 1rem;
    text-shadow: 1px 1px 3px darkred;
}

main {
    padding-top: 70px;
}

section {
    padding: 3rem 1rem;
    min-height: 100vh;
    background: rgba(0, 0, 0, 0.6);
}

section:nth-child(even) {
    background: rgba(20, 20, 20, 0.7);
}

section p, section ul {
    background: rgba(90, 33, 80, 0.1);
    padding: 1rem;
    border-radius: 8px;
    color: #000;
    text-shadow: 1px 1px 3px white;
}

section ul li a {
    color: darkblue;
    text-shadow: 1px 1px 3px white;
}

h1 {
    border-bottom: 1px solid rgba(255,255,255,0.3);
    display: inline-block;
    text-align: center;
}
h2 {
    border-bottom: 1px solid rgba(255,255,255,0.3);
    display: inline-block;
}
h3 {
    border-bottom: 1px solid rgba(255,255,255,0.3);
    text-align: center;
}
h4 {
    
    text-align: center;
    color: lightblue;
    font-style: italic;
}

.menu-toggle {
    cursor: pointer;
    font-size: 1.5rem;
    user-select: none;
    z-index: 101;
}

.god-entry {
    color: lightblue;
    font-weight: bold;
    text-shadow: 2px 2px 3px darkred;
}
.text-entry {
    color: lightgrey;
    text-shadow: 2px 2px 3px black;
    text-align: center
}

/* Responsive Styles */
@media (min-width: 769px) {
    nav {
        left: 0;
        position: static;
        height: auto;
        width: auto;
        flex-direction: row;
        background: transparent;
        padding: 0;
        transition: none;
    }

    nav a {
        margin: 0 0.5rem;
    }

    .menu-toggle {
        display: none;
    }
}
