html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;

    background:
        radial-gradient(circle at center,
            #f8f1e2 0%,
            #efe2c8 60%,
            #dcc69f 100%);

    overflow: hidden;
}

.parking-image {
    display: block;
    width: auto;
    height: auto;
    max-width: 90vw;
    max-height: 92vh;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}