/* General styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f1f1f1;
    color: #333;
    text-align: center;
    padding: 20px;
}

header {
    margin-bottom: 50px;
}

.main-title {
    font-size: 4rem;
    color: #FF6347;  /* Tomato red */
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.5rem;
    color: #FF4500;  /* Orange Red */
}

.images-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.image {
    width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.description {
    margin-top: 40px;
    font-size: 1.2rem;
}

footer {
    margin-top: 50px;
    font-size: 1rem;
    color: #666;
}
