/* styles.css */

/* Resetting default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    color: #333;
}

/* Header styles */
header {
    background-color: #007bff;
    color: #fff;
    padding: 20px;
    text-align: center;
}

header h1 {
    font-size: 32px;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Main styles */
main {
    max-width: 960px;
    margin: 20px auto;
    padding: 0 20px;
}

.about-section {
    margin-bottom: 40px;
}

.about-section h2 {
    margin-bottom: 20px;
}

.about-section p {
    margin-bottom: 15px;
}

.about-section h3 {
    margin-top: 30px;
    margin-bottom: 10px;
}

/* Image gallery styles */
.image-gallery {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.image-gallery img {
    width: 30%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

/* Footer styles */
footer {
    background-color: #007bff;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}
