* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    background: white;
    font-family: Georgia, serif;
    color: #555555;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    max-width: 90vw;
}

img {
max-width: min(600px, 90vw);
max-height: 60vh;
height: auto;
width: auto;
object-fit: contain;
margin-bottom: 1rem;
}

h1 {
    font-size: clamp(1.5rem, 4vw, 3.5rem);
    font-weight: normal;
    letter-spacing: 0.2em;
    line-height: 1.1;
}