body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.header {
    text-align: center;
    background-color: #3498db;
    color: #fff;
    padding: 20px;
}

.title-font {
    font-family: 'Montserrat', sans-serif;
}

.subtitle-font {
    font-family: 'Cursive', cursive;
    font-style: italic;
    color: #e74c3c;
}

.section-title {
    font-family: 'Georgia', serif;
    color: #2980b9;
}

.custom-list {
    list-style-type: square;
    font-weight: bold;
}

.custom-numbered-list {
    list-style-type: upper-roman;
    font-style: italic;
}

.highlight {
    color: #e67e22;
}

.italic {
    font-style: italic;
}

.bold {
    font-weight: bold;
}

.image-gallery {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.image-gallery img {
    width: 300px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.image-gallery img:hover {
    transform: scale(1.1);
}