h1 {color:darkgreen;}
/* General body styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}

/* Header styling */
header {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

h1 {
    margin: 0;
}

/* Section styling */
section {
    padding: 20px;
    margin: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Image styling */
.image {
    width: 300px;
    height: auto;
    margin: 10px;
    display: inline-block;
}

.thumbnail {
    width: 100px;
    height: auto;
    margin: 10px;
    display: block;
}

/* Media player controls styling */
audio, video {
    width: 100%;
    max-width: 600px;
    margin: 10px 0;
}

/* Custom list styling */
ul {
    list-style-image: url('https://static.vecteezy.com/system/resources/thumbnails/018/251/176/small/pointer-directional-arrow-on-transparent-background-free-png.png'); size: 10px
}

/* Footer styling */
footer {
    text-align: center;
    background-color: #333;
    color: white;
    padding: 10px;
    margin-top: 40px;
}
.text-image {
    display: flex;          /* Enable Flexbox */
    align-items: center;    /* Vertically center the items */
    gap: 15px;              /* Optional: Adds space between image and text */
}

.text-image img {
    max-width: 150px;       /* Limit the image width */
    height: auto;           /* Maintain aspect ratio */
}

.text-image p {
    margin: 0;              /* Remove default margin around text */
    max-width: 500px;       /* Prevent the text from becoming too wide */
}