html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background: url('background1.png') no-repeat center center fixed;
    background-size: cover;
    overflow: hidden;
    position: relative;
}

/* Fixed NAV BUTTONS - Cross-browser Safe */
.nav-button {
    width: 162px;
    height: 41px;
    display: block;
    position: fixed;
    z-index: 10;
}

.archive {
    top: 118px;
    left: 65px;
}

.zine {
    top: 118px;
    left: 250px;
}

.tunes {
    top: 118px;
    left: 863px;
}

.links {
    top: 118px;
    left: 1065px;
}

/* Enter Image (if you’re still using this elsewhere) */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.enter-image {
    width: 500px;
    max-width: 90%;
    height: auto;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.enter-image:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

/* About Image Fullscreen Fixed */
.about-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 5;
    pointer-events: none;
}

