body {
    font-family: Arial, sans-serif;
    background-color: #75787e;
    color: #333;
    text-align: center;
    padding: 50px;
}

.header {
    font-size: 2.5em;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.image-container img {
    width: 200px;
    height: auto;
    transition: transform 0.3s ease;
}

.image-container img:hover {
    transform: scale(1.1);
}

.content {
    margin-top: 30px;
    font-size: 1.2em;
}