html {
    margin:15px;
    padding:0px;
}

body {
    font-family: 'Roboto';
    margin:0px;
    padding:0px;
}

h1, h2, h3, h4
{
    color:#FF8100;
    margin-top:8px;
    margin-bottom:8px;
}

a {
    color:#FF8100;
    font-size:12px;
}

b {
    font-size:12px;
    color:black;
}

p {
    margin-top:2px;
    margin-bottom:2px;
    font-size:12px;
}

.container
{
    display:flex;
    flex:1;
    align-items:center;
    justify-content:center;
}

.content
{
    display:flex;
    flex-direction:column;
    max-width:450px;
    flex:1;
}

.logo
{
    display:flex;
    justify-content:center;
}

.menu 
{
    background-color:white;
    top:0;
    position:sticky;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.menu-items
{
    text-align:center;
}

.separator
{
    border-top:1px solid lightgray;
    margin-top:15px;
    margin-bottom:15px;
}

.product
{
    display:flex;
    flex-direction:row;
}

.product-icon
{
    display:flex;
    align-items:center;
}

.product-description
{
    margin-left:8px;
}