/* Basic Body and Background Setup */
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    /* Use the correct background image */
    background-color: #000;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Keeps the background static */
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10+ */
    user-select: none; /* Standard syntax */
    -webkit-user-drag: none; /* Prevents dragging links/images */
}

/* Add a dark overlay for better text readability */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

/* Wrapper to keep content above the overlay */
.content-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Header for Titles */
.main-header {
    margin-bottom: 20px;
}

h1 {
    font-size: 4em;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

h2 {
    font-size: 1.8em;
    margin: 0;
    font-weight: normal;
    color: #e0e0e0;
}

/* Decorative Image (Black Hole) */
.decorative-image {
    max-width: 400px; /* Adjust size as needed */
    width: 90%;
    margin-bottom: 30px;
}

/* Navigation with Linkable Images */
.image-nav {
    display: flex;
    flex-direction: column;
    gap: 25px; /* Space between link images */
}

.nav-image {
    max-width: 350px;
    width: 100%;
    border-radius: 10px;
    border: 2px solid #555;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #bb86fc;
    border-color: #bb86fc;
}
