:root {
    --background: #F9F3E8;
    --text: #414042;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

body {
    background: var(--background);
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    gap: 12px;
}

.image {
    width: 100%;
    max-width: 256px;
    height: auto;
}

.info {
    font-family: Roboto, sans-serif;
    font-size: 18px;
    text-decoration: none;
    color: var(--text);
}