body {
    font-family: Arial, sans-serif; /* Same font as the main page */
    text-align: center;
    background-color: #e0e0e0; /* Soft gray background */
    background-image: url('background-pattern.jpg'); /* Add a subtle background pattern */
    background-size: cover;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
}

h1 {
    color: #222;
    margin: 20px 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    font-size: 2.5em;
}

.description {
    font-size: 1.2em;
    margin: 20px auto;
    color: #333;
    width: 80%;
    max-width: 800px;
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background for readability */
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.picture-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px auto;
    width: 90%;
    max-width: 2400px;
}

.picture {
    flex: 1 1 48%;
    max-width: 48%;
    box-sizing: border-box;
    border-radius: 10px;
    overflow: hidden;
}

.picture img {
    width: 100%;
    border: 2px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out;
}

a {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 25px;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.2s ease-in-out;
}

a:hover {
    background-color: #0056b3;
}
