:root {
/* Colors */  
    --first-color: #ffca09;
    --second-color: #90adc6; 
    --third-color:  #e9eaec; 
    --fourth-color: #333652;
    --fifth-color: #beefff;
    --sixth-color: #5c646b;

ffca09, 90adc6, e9eaec, 333652, beefff, 5c646b

/* Fonts */
    font-family: copperplate, papyrus, fantasy;
}

/* Styles for common elements */

body {
  margin: 5;
  background-color: var(--fifth-color);
  color: var(--fourth-color);
  height: 200px;
  position: relative;
  border: 0px solid black;
  text-align: left;
  display: flex
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: right;
  font-size: small;
}

.home {
    text-align:right;
    font-weight: bolder;
    font-size: large;
    a:link, a:visited {
      text-decoration: none;
    }
}

.cookies {
    text-align:left;
    padding-left: 2%;
    font-weight: normal;
    font-size: small;
    a:link, a:visited {
      text-decoration: none;
    }
}

  /* Headlines */
h1 {
    justify-content center;
    margin-left: 20px;
    margin-top: 40px;
}

h2 {
    text-align: left;
    margin-left: 20px;
    margin-top: 40px;
}

h3 {
    text-align: left;
    margin-left: 30px;
}

/* Links */

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:active {
  text-decoration: underline;
}


/* Lists */

li {
    padding-top: 5px;
    padding-bottom: 0px;
}

ul.ingredients {
  list-style: disc;
  padding-left: 1.2rem;
}

    /* Remove regular bullet for the last item */
ul.ingredients li:last-child {
  list-style: none;
  position: relative;
  text-align: right;
  padding-right: 5em; /* space for custom marker */
  font-weight: bold;
}

    /* Insert custom marker */
ul.ingredients li:last-child::after {
  content: "gKh/100g";
  position: absolute;
  right: 0;              /* aligns marker on the right */
  font-weight: bold;     /* optional */
}

/* Responsive Navbar */

ul.sidenav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 25%;
  background-color: var(--second-color);
  color: var(--fourth-color);
  position: fixed;
  height: 100%;
  overflow: auto;
}

ul.sidenav li a {
  display: block;
  color: #000;
  padding: 8px 16px;
  text-decoration: none;
}
 
ul.sidenav li a.active {
  background-color: #4CAF50;
  color: white;
}

ul.sidenav li a:hover:not(.active) {
  background-color: #555;
  color: white;
}

div.content {
  margin-left: 25%;
  padding: 1px 16px;
  height: 1000px;
}

@media screen and (max-width: 900px) {
  ul.sidenav {
    width: 100%;
    height: auto;
    position: relative;
  }
  
  ul.sidenav li a {
    float: left;
    padding: 15px;
  }
  
  div.content {margin-left: 0;}
}

@media screen and (max-width: 400px) {
  ul.sidenav li a {
    text-align: center;
    float: none;
  }
}

/*
  Buttons 

.container {
  height: 200px;
  position: relative;
}

.center {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.button-group {
    width: 80%;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}


.button-01 {
  height: 100px;
  width: 100px;
  border-radius: 20%;
  background-color: var(--third-color);
  font-size: x-large;
  font-weight: bolder;
}

*/