@font-face {
    font-family: brln;
    src: url(/assets/fonts/britrln.ttf);
} 

* {
   font-family: Helvetica;
   box-sizing: border-box;
}


.column {
  float: left;
  width: 50%;
  padding: 10px;
}

.foodcolumnl {
  float: left;
  width: 30%;
  padding: 10px;
}

.foodcolumnr {
  float: left;
  width: 70%;
  padding: 10px;
}

.grid-container {
  display: grid;
  grid-template-columns: 80% 20%;
}

.grid-item {
  text-align: left;
}

.grid-item-right {
  text-align: right;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

p.brlnhead {
  font-family: brln;
  font-size: 45px;
  color: white;
  text-align: center;
  float: center;
}

p.brlnsrps {
  font-family: brln;
  color: brown;
  text-align: center;
}

p.brlnday {
  font-family: brln;
  font-size: 30px;
  color: #1F4B61;
  text-align: left;
  text-decoration: underline;
}

p.brlnintro {
  font-family: brln;
  text-align: justify;
}

.glass {
  float: left;
  font-family: brln;
  width: 75px;
  max-width: 100%;
  height: 150px;
  position: relative;
  border: 5px solid #999999;
  border-top: 0;
  margin: 0px 0px 0 0px;
  -webkit-box-shadow: 0 8px 6px -6px black;
  -moz-box-shadow: 0 8px 6px -6px black;
  box-shadow: 0 8px 6px -6px black;
}

.glass:before {
  content:"\a0";
  position: absolute;
  top: -15px;
  height: 10px;
  width: 50%;
  left: 25%;
}
.glass > div {
  text-align: center;
  color: white;
  background-color: #a5ba24;
  position: absolute;
  border-top: 0;
  bottom: 0;
  width: 96%;
  margin: 2%;
}
.glass.bitter > div { background-color: #bc9726; }
.glass.yellow > div { background-color: #f5df73; }
.glass.black > div { background-color: #101010; }
.glass.red > div { background-color: #ba1616; }
