
header {
    background-color: #020000;
    padding: 20px;
}

nav {
    display: flex;
    justify-content: center; /* Horizontally center the navigation links */
    align-items: center; /* Vertically center the navigation links */
}

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

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

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}




body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #2a2929;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.image {
    margin: 10px;
    border: 2px solid #fff; /* Optional: Add border around images */
}

.image img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* Optional: Add border radius to images */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add shadow effect */
}

p {color:rgb(221, 218, 218);}