/* Basic Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

/* Ads Section */
.ads {
    display: flex;
    justify-content: space-between;
    margin: 20px;
}

.ad {
    width: 300px;
    height: 300px;
    background-color: #ccc;
    border-radius: 8px;
    overflow: hidden;
}

.ad img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Moving Photo Section */
.moving-photo {
    overflow: hidden;
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.photo {
    animation: slide 10s infinite linear;
}

.photo img {
    width: 100%;
    height: auto;
}

/* Keyframes for the photo movement */
@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* About and Contact Sections */
section {
    margin: 40px 20px;
}

h2 {
    color: #333;
    font-size: 24px;
}
