body{
    box-sizing: border-box;
    margin: 0;
    font-family: sans-serif;
}
h4 , p{
    margin: 0;
}
header{
    width: 100vw;
    height: 4rem;
    position: sticky;
    top: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    margin-bottom: 1rem;
}
header img{
    width: auto;
    height: 2.5rem;
}
.container{
    width: 100vw;
    height: calc(100% - 4rem);
    display: flex;
    justify-content: center;
    background-color: #fff;
}
.container main {
    width: 100%;
    height: auto;
    max-width: 768px;
    margin: 1rem 1rem 0 1rem;
}
.container main section{
    margin-bottom: 3rem;
}
.container main section hr{
    border-top: 1px solid rgba(0,0,0,0.1);
}
.container main section .title{
    margin-bottom: 1rem;
    font-weight: 800;
}
.container main section .items{
    display: flex;
    align-items:center;
    min-height: 3.5rem;
}
.container main section .item{
    margin-bottom: .3rem;
}
.container main section .item-description{
    max-width: 280px;  /* Hack */
    display: table-cell;
    word-wrap: break-word;
    font-style: italic;
    opacity: .7;
}
.container main section .items img{
    width: .8rem;
}
.container main section .item-price{
    margin-right: .1rem;
}
.spacer{
    flex-grow: 1;
}


/* Hack */
.hack-text{
    opacity: .7; 
    font-style: italic
}
.hack-text2{
    display: inline-block;
    margin:.5rem 0 .5rem 0;
}

/* Media Queries */
@media screen and (max-width: 375px){
    .container main section  .item-description{
        max-width:220px;
    }
    .container main section .item{
        max-width: 220px;
        line-height: 1.4rem;
    }
}
