html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, menu, nav, section, time, mark, audio, video, details, summary {
    margin: 0;
    padding: 0;
    border: 0;
}
html {
    box-sizing: border-box;
    @media ( prefers-reduced-motion: no-preference ) {
        scroll-behavior: smooth;
    }
    @media ( 768px <= width ) {
        overflow-y: scroll;
    }
}
*, *:before, *:after {
    box-sizing: inherit;
}
html {
    background-color: #202020;
    font-size: 62.5%;
}
body {
    padding: 2rem;
    background-color: #202020;
    line-height: 1.4;
    letter-spacing: 1px;
    font-family: Arial;
    font-size:2rem;
    color: #fff;
}
.places {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(
        auto-fit,
        minmax( min( 200px, 100% ), 1fr )
    );
    gap: 2rem;
    list-style-type: none;
}
.place {
    padding: 1rem 1.3rem;
    border-radius: 1.5rem;
}
.place .name {
}
.place .oh {
    opacity: 0.5;
}
.place.open {
    border: 5px solid #4cd137;
}
.place.closed {
    border: 5px solid #e74c3c;
}
