body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: Arial, sans-serif;
}

.content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
    padding: 2rem;
    max-width: 800px;
    margin: auto;
}

.main-content h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #333;
}


.main-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}


.image-wrapper {
    display: inline-block;
    max-width: 300px;
    margin: 1.5rem 1rem 1.5rem 0;
    float: left;

}

.history-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.image-caption {
    font-size: 0.9rem;
    color: #555;
    margin-top: 0.5rem;
    text-align: center;
}