.header {
  padding: 80px; /* some padding */
  text-align: center; /* center the text */
  background: #455054;
  color: white; /* white text color */
}

/* Increase the font size of the <h1> element */
.header {
  font-family: 'Courier New', monospace, sans-serif;
}

.header p {
  color: #D4CFC9
}

.header h1 {
  font-size: 40px;
  background: #D4CFC9;
  color: #455054
}

a:link {
  color: #455054;
}

/* Style the top navigation bar */
.navbar {
  overflow: hidden; /* Hide overflow */
  background-color: #308695; /* Dark background color */
  font-family: 'Courier New', monospace, sans-serif;
  border-radius: 10px
}

/* Style the navigation bar links */
.navbar a {
  float: left; /* Make sure that the links stay side-by-side */
  display: block; /* Change the display to block, for responsive reasons (see below) */
  color: white; /* White text color */
  text-align: left; /* Center the text */
  padding: 14px 20px; /* Add some padding */
  text-decoration: none; /* Remove underline */
}

/* Right-aligned link */
.navbar a.right {
  float: right; /* Float a link to the right */
}

/* Change color on hover/mouse-over */
.navbar a:hover {
  background-color: #19454d; /* Grey background color */
}

/* Ensure proper sizing */
* {
  box-sizing: border-box;
}

/* Column container */
.row {
  display: flex;
  flex-wrap: wrap;
}

/* Create two unequal columns that sits next to each other */
/* Sidebar column */
.side {
  flex: 40%; /* Set the width of the sidebar */
  padding: 60px; /* Some padding */
  background-color: #D4CfC9;
}

/* Main column */
.main {
  flex: 60%; /* Set the width of the main content */
  background-color: white; /* White background color */
  padding: 60px; /* Some padding */
}

.row h2  {
  background: #455054;
  color: white;
  text-indent: 12px
}

.colpart {
  max-width: 60%; /* https://www.sitepoint.com/community/t/a-column-of-divs-centered-horizontally/449811 */
  padding: 20px; /* Some padding */
  /* margin: auto; /* Centering - see https://www.w3schools.com/css/css_align.asp  */
}

.colpart h3 {
  color: #455054; /* text color */
}

.footer {
  padding: 20px; /* Some padding */
  text-align: center; /* Center text*/
  background: #455054; /* Grey background */
  color: #D4CFC9;
}

.footer p{
  font-size: 14px;
}

.org {
  margin-left: auto; /* https://www.w3schools.com/howto/howto_css_table_center.asp */
  margin-right: auto; /* https://www.w3schools.com/howto/howto_css_table_center.asp */
  width: 50%;
}
@media screen and (max-width: 1000px) {
      .org {
       width: 99%;
      }
    }

table {
  margin-left: auto; /* https://www.w3schools.com/howto/howto_css_table_center.asp */
  margin-right: auto; /* https://www.w3schools.com/howto/howto_css_table_center.asp */
  border-collapse: collapse;
  /*width: 50%;*/
}

td, th {
  text-align: left;
  padding: 8px;
  padding-bottom: 1em;
}

td:nth-child(1) {
  background-color:#455054;
  color: white;
}


/*td:nth-child(1) {
  text-align: right;
}
th:nth-child(1) {
  text-align: right;
}*/

.highlight  {
  background: #E69D45;
  color: white;
  padding: 3px 20px;
  /*font-weight: bold;*/
  border-radius: 10px
}

.highlight a:link { /* https://www.quora.com/How-can-the-color-of-all-links-be-changed-inside-a-div-using-CSS  */
  color: #522c91;
}

/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 950px) {
  .row {
    flex-direction: column;
  }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .navbar a {
    float: none;
    width: 100%;
  }
}

/* Current layout done based on this tutorial: https://www.w3schools.com/howto/howto_make_a_website.asp and extended mostly with advice from w3schools */