html,
body {
    background-color: hsl(203, 40%, 80%);
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.stage {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 2rem;
    box-sizing: border-box;
}

.hero-image {
    display: block;
    max-width: min(90vw, 900px);
    max-height: 90vh;
    width: auto;
    height: auto;
}
