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

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    background: #000;
    color: #fff;
    font-family: Georgia, "Times New Roman", Times, serif;
    text-align: center;
}

img {
    max-width: min(90vw, 24rem);
    height: auto;
}

h1 {
    font-weight: 700;
    font-size: 2rem;
    background: linear-gradient(135deg, #f9d976, #d4af37, #8a6d1f);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

h2 {
    font-weight: 400;
    font-size: 1.5rem;
}