.roboto-thin {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.roboto-light {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-medium {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.roboto-black {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.roboto-thin-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.roboto-light-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.roboto-regular-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.roboto-medium-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.roboto-bold-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.roboto-black-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: italic;
}

* {
  box-sizing: border-box;
}

body {
    margin: 0;
    background-color: #000000;
    background-image: url("images/lah_bg_dark.jpg");
    background-size: cover; /* Resize the background image to cover the entire container */
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.main_container {
    width: 90%;
    max-width: 980px;
    margin: auto;
    margin-top: 10px;
    border-radius: 50px;
    border: 0px solid #000000;
    overflow: hidden;
    background-image: url("images/lah_bg_dark.jpg");
    background-size: cover; /* Resize the background image to cover the entire container */
  box-shadow: -20px 20px 9px #000000;
}

/* Style the header */
.header {
    padding: 0px;
    text-align: center;
}

.footer {
    text-align: center;
    background-color: #ac2641;
    color: #ffffff;
    padding: 1% 10% 1% 10%;
    font-size: 0.8em;
}

div.serving {
  text-align: justify;
    background-color: #AA2A41;
    color: #ffffff;
    padding: 1% 10% 1% 10%;
    font-size: 2em;
}

div.serving::after {
  content: "";
    font-size: 1px;
  display: inline-block;
  width: 100%;
}


/* Style the top navigation bar */
.topnav {
    overflow: hidden;
    background-color: #0167AF;
    padding: 0 0;
    display: flex;
    justify-content: space-between;
}

/* Style the topnav links */
.topnav a {
    float: left;
    display: block;
    color: #ffffff;
    padding: 12px 0px;
    width: 34%;
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 1.2em;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
}

/* Change color on hover */
.topnav a:hover {
    background-color: #0086DF;
    color: #ffffff;
}

.row.one {
    background-color: #ffffff;
}

.row.two {
    background-image: linear-gradient(to bottom right, #000000, #0167AF, #000000);
}

.row.three {
    background-color: #ffffff;
}

.row.three div.column.middle {
    width: 100%;
    color: #000000;
    padding: 30px;
    font-size: 1.7em;
}

.row.two div.column.middle {
    width: 100%;
    color: #ffffff;
    padding: 30px;
}

.row.two div.column.middle p {
    margin: 5px 50px 40px 50px;
}

/* Create three unequal columns that floats next to each other */
.column {
    float: left;
    padding: 10px;
}

/* Left and right column */
.column.side {
    width: 25%;
    padding: 20px;
}

/* Middle column */
.column.middle {
    width: 50%;
    padding: 20px;
}

/* Clear floats after the columns */
.row::after {
    content: "";
    display: table;
    clear: both;
    padding: 20px;
}

div.one div.left {
    text-align: center;
}

h2 {
    text-align: center;
}

h3 {
    padding: 0;
    margin: 0;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column.side, .column.middle {
    width: 100%;
  }
}