body {
    font-family: Courier, monospace;
    text-align: center;
    background-color:black;
}

.gallery {
    margin: 50px auto;
    padding: 20px;
    max-width: 600px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.gallery-image {
    width: 100%;
    height: auto;
    display: none; /* Hide all images initially */
}

.navigation {
    margin-top: 20px;
}

button {
    padding: 10px 20px;
    font-size: 17px;
    cursor: pointer;
    background-color: #8025b7;
    color: #000000;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    font-family: Courier,monospace;
}

button:hover {
    background-color: #cb1ed4;
}
/* CSS styles for navigation bar and links */
nav {
    background-color: #8025b7;
    color: #000000;
    padding: 10px;
    font-weight:bold;
}

.nav-links {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.nav-links li {
    display: inline;
    margin-right: 20px;
}

.nav-links a {
    color: #000000;
    text-decoration: none;
}

.nav-links a:hover {
    text-decoration: underline;
    color: #cb1ed4;
}
/* CSS styles for text underneath navigation */
.nav-text {
    margin-top: 20px; /* Add spacing between navigation and text */
    font-size: 22px;
    color: #f10000; /* Text color */
    font-weight: bold;
    font-style: italic;
}

.nav-text p {
    margin: 0; /* Remove default paragraph margins */
}