body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px;
}

nav a {
    margin: 10px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

main {
    padding: 20px;
}

h1,
h4 {
    color: white;
}

h2
{
    color: black;
}

h3 {
    color: #2e8b57; /* Different color */
}


.row {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.column {
    text-align: center;
}

.image-name {
    font-style: italic;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: white;
}

.wrapped-image {
    float: left; /* or float: right; depending on the desired alignment */
    margin: 0 15px 15px 0; /* Adjusts space around the image (top, right, bottom, left) */
    width: 150px; /* Set width for the image */
}
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}
