body {
    margin: 0;
    padding: 0;
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    overflow-x: hidden;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: black;
    padding: 20px 0;
    text-align: center;
    z-index: 1000;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 15px 15px;
    font-size: 18px;
    text-transform: uppercase;
}

nav a:hover {
    text-decoration: underline;
}

.logo {
    position: fixed;
    top: 15px;
    left: 15px;
    max-width: 200px;
    z-index: 1001;
}

img.random-images {
    width: 150px;
    height: auto;
    margin: 10px;
    filter: grayscale(100%);
}

.image-gallery {
    position: relative;
    top: 50px;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

/* about.html styles */
.about-container {
    padding: 80px 20px;
    max-width: 800px;
    margin: auto;
}
