body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
}

.container {
    text-align: center;
}
h1 {
    margin-top: 0; /* Removes default margin */
    color: #333;
}

.photos {
    display: flex;
    justify-content: space-around;
    max-width: 800px; /* Adjust as needed */
    margin: 0 auto; /* Center align horizontally */
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.photos img {
    max-width: 30%; /* Adjust size of photos */
    height: auto;
    border-radius: 4px;
}
.paragraph p {
    max-width: 600px; /* Adjust width as needed */
    margin: 0 auto; /* Center align horizontally */
    font-size: 16px;
    line-height: 1.6;
}
.download {
    margin-bottom: 20px; /* Space between paragraph and download link */
}

.download a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.download a:hover {
    background-color: #0056b3;
}