/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f8ff;
    color: #004466;
    margin: 0;
    padding: 20px;
}

/* Container Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
header {
    text-align: center;
    margin-bottom: 20px;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #00796b;
}

header p {
    font-size: 1.2em;
    color: #004d40;
}

/* Photo Grid Styles */
.photo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.photo-grid a {
    flex: 1 1 calc(33.333% - 40px);
    display: block;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.photo-grid a:hover {
    transform: scale(1.05);
}

.photo-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Footer Styles */
footer {
    text-align: center;
    margin-top: 20px;
    font-size: 1em;
    color: #00796b;
}
