body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    margin: 0
}

code {
    font-family: source-code-pro, Menlo, Monaco, Consolas, Courier New, monospace
}

#root {
    flex: 0 1;
    height: 100%;
    justify-content: center;
    text-align: center;
    width: 100%
}

#root,
#root>#content {
    align-items: center;
    display: flex;
    flex-direction: column
}

#root>#content {
    background-color: hsla(0, 0%, 100%, .878);
    border-radius: 1%;
    justify-content: flex-start;
    margin-top: 2vmin;
    padding: 20px
}

@media screen and (min-width:600px) {
    #root>#content {
        border: 3px solid #c9c9c9;
        box-shadow: 10px 10px 100px rgba(0, 0, 0, .663)
    }
}

.heading {
    background-color: #c03;
    border: 2px solid #fc0;
    color: #fff;
    margin-bottom: 10px;
    padding: 10px
}

.heading>h1 {
    color: #fc0;
    font-size: xxx-large;
    margin: 0;
    padding: 0;
    text-transform: uppercase
}

.important {
    color: #c03
}

.product {
    font-size: 1.2rem;
    font-weight: 650
}

.productClass {
    font-size: 1.75rem
}

.background {
    bottom: 0;
    display: none;
    -webkit-filter: grayscale(.5) brightness(40%);
    filter: grayscale(.5) brightness(40%);
    height: 100%;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: -100
}

.background>img {
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    width: 100%
}

@media screen and (min-width:600px) {
    .background {
        display: inherit
    }
}