body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Space between image containers */
}

.image-container {
    text-align: center;
}

.image-container img {
    border: 2px solid transparent;
    transition: border-color 0.3s ease, border-radius 0.3s ease;
}

.image-container p {
    margin-top: 5px;
}

.image-container:hover img {
    border-color: #5E17EB;
    border-radius: 10px; 
    cursor: pointer;
}

.image-container a {
    text-decoration: none;
    color: inherit;
}

.image-container a:visited {
    color: inherit;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
}

nav {
    height: 50px; /* Set a fixed height for the navigation bar */
    width: 100%;
    background-color: #333;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.search-container {
    margin-top: 50px; /* Add margin-top to create space below the navigation bar */
    margin-bottom: 20px;
}

#search-bar {
    padding: 10px;
    width: 300px;
    border: none;
    border-radius: 5px;
}

.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Space between buttons */
    margin-top: 20px; /* Add margin-top to create space between search bar and buttons */
}

.navigate-button {
    background-color: blue;
    color: white;
    border: none;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.navigate-button:hover {
    background-color: darkblue;
}
