body {
    background-color: #d9d8dc; /* Updated background color */
    color: #333; /* Darker text for better contrast */
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 20px;
}

.image-container {
    margin: 20px auto;
    max-width: 953px; /* Maximum width for the image */
    width: 100%; /* Make it responsive */
    display: flex;
    justify-content: center;
}

.image-container img {
    width: 100%; /* Make the image responsive */
    height: auto; /* Maintain aspect ratio */
    max-width: 953px; /* Maximum width */
    max-height: 953px; /* Maximum height */
    border-radius: 10px;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.social-button {
    background-color: transparent;
    color: #555; /* Dark gray color */
    padding: 0;
    border: none;
    font-size: 24px; /* Smaller size */
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.3s ease; /* Only opacity transition */
}

.social-button:hover {
    opacity: 0.7; /* Slight fade on hover */
}

.footer {

    margin-top: 50px; /* Space above the footer */

    font-size: 12px; /* Font size for the footer */

    color: #555; /* Dark gray color for the footer text */

    text-align: center; /* Center the footer text */

}