body {
    position: relative;
    width: 100%;
    height: 100%;
    background: #F8E1E7;
    font-family: Lato, sans-serif;
    font-size: 18px;
}

header {
    position: relative;
    height: 120px;
    width: 100%;
    background-color: #587C7A;
}

#logo {
    z-index: 2;
    margin-top: 20px;
    margin-left: 30%;
    float: left;
    height: 300px;
    width: 90%;
}

ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: #587C7A;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 118px;
    color: black;
}

ul li {
    font-family: Lato, sans-serif;
    font-size: 18px;
    list-style-type: disc;
}

ol li.menubar_right {
    position: sticky;
    font-family: Lato, sans-serif;
    font-size: 18px;
    float: right;
    display: inline;
    margin-top: 60px;
}

ol li.menubar_left {
    position: sticky;
    font-family: Lato, sans-serif;
    font-size: 18px;
    float: left;
    display: inline;
    margin-top: 60px;
}

ol li.menubar_center {
    position: relative;
    font-family: Lato, sans-serif;
    font-size: 18px;
    display: inline;
    left: 50%;
    right: 50%;
    background-color: #587C7A;
}

li div {
    position: sticky;
    max-width: 180px;
    height: 36px;
    display: block;
    color: black;
    text-align: left;
    text-decoration: none;
    justify-content: center;
    align-items: center;
}


#active {
    background-color: #F8E1E7;
}

li a {
    position: relative;
    display: inline-block;
    color: black;
    text-align: center;
    height: 36px;
    max-width: 180px;
    padding: 10px 10px;
    text-decoration: none;
    justify-content: center;
    background-color: #587C7A;
}

li a:hover, .menupoint_left:hover .dropbtn_left:hover {
    background-color: #F8E1E7;
}

li a#switch:hover {
    background-color: transparent;
}

.btn-group {
    top: 200px;
    left: 900px;
}

.btn-group button {
    border-color: black;
    background-color: darkgrey;
    color: #000;
    padding: 10px 18px;
    cursor: pointer;
    border-radius: 20px;
    font-family: Lato, sans-serif;
    font-size: 24px;
    margin-top: 40px;
    box-shadow: #555555;

}

.btn-group button:hover {
    background-color: #f1f1f1;
}


ul.breadcrumb {
    position: absolute;
    left: 0;
    top: 50px;
    padding: 6px 10px;
    list-style: none;
    width: auto;
    background-color: transparent;
}

/* Display list items side by side */
ul.breadcrumb li {
    float: left;
    font-family: Lato sans-serif;
    display: inline;
    font-size: 16px;
    color: black;
}

/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li + li:before {
    padding: 8px;
    color: black;
    content: ">";
}

/* Add a color to all links inside the list */
ul.breadcrumb li a {
    font-family: Lato, sans-serif;
    font-size: 16px;
    color: black;
    text-decoration: underline;
    width: auto;
    padding: 0 0 0 0;
}

/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
    background: transparent;
    color: #01447e;
    text-decoration: underline;
}

/*responsive design*/
@media (max-width: 600px) {
    li div {
        float: none;
        margin: 0px;
    }

    #logo {
        float: none;
        margin: 0px;
    }

}


/* Create two equal columns that floats next to each other*/
.column{
  float: left;
  width: 90%;
  padding: 10px;
}

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

main{
    background: rgba(248, 225, 231, 0.9);
}
article {
  padding: 20px;
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-width: 200px;
  -moz-column-width: 200px;
  column-width: 200px;
}



/* Header configurations */
h1 {
    padding: 10px;
}
