html, body {
    height: 100%;
    margin: 0;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    margin: 0;
}

.container {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.portrait {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 20px;
    display: block;
    margin-right: auto;
    margin-left: auto;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
}

.social-links a {
    text-decoration: none;
    margin: 0 10px;
    color: #555;
    font-weight: bold;
}

.social-links a:hover {
    text-decoration: underline;
}

.contact-link {
    margin-top: 20px;
}

.contact-link a {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.contact-link a:hover {
    background-color: #45a049;
}

footer {
    background-color: #f9f9f9;
    padding: 15px 25px;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.7rem;
    border-top: 1px solid #eee;
    position: fixed;
    bottom: 0;
    width: 100%;
    line-height: 1.1;
    box-sizing: border-box;
}

.imprint-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}

.imprint-details span {
    white-space: nowrap;
}

.imprint-separator {
    margin: 0 0.15rem;
}

.legal-text {
    margin-top: 10px;
    font-size: 0.6rem;
    colod: #888;
}