/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    background-color: #4B0F5A; /* kolor jagodowy */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    font-family: "Georgia", "Times New Roman", serif;
}

.container {
    text-align: center;
    padding: 1rem;
}

h1 {
    color: #D4AF37; /* złoty */
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: bold;
    letter-spacing: 0.08em;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.35);
}