body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    display: flex;
    height: 100vh;
    background-color: #f7f7f7;
}

.container {
    display: flex;
    width: 100%;
    height: 100vh;
}

.image-section {
    flex: 2;
    background-image: url('images/eleonora-de-medici.jpg');
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
}

.text-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
}

.text-content {
    text-align: center;
}

h1 {
    font-size: 2.5em;
    font-weight: 400;
    margin: 0;
    color: #333;
}

h2 {
    font-size: 1.5em;
    font-weight: 300;
    margin: 10px 0 0 0;
    color: #666;
}
