* {
  box-sizing: border-box;
}

html {
  background-color: #336;
}

/* Style the body */
body {
  margin: 10px;
  font-family: Arial, Helvetica, sans-serif;
  background-color: white;
  border: solid 3px #aabbee;
}

/* Header/logo Title */
.header {
  text-align: center;
  background-position: 120px;
  width: auto;
  padding: 10px;
  background-image: url(../bilder/logo_k.jpg);
  background-repeat: no-repeat;
  background-color: #aabbee;
}

/* Style the top navigation bar */
nav {
  position: sticky;
  top: 0px;
  max-width: 115px;
  display: flex;
  flex-direction: row;
  text-decoration: none;
  z-index: 1;
}

/* Style the topnav links */
nav a {
  float: left;
  margin-top: 10px;
  margin-left: 0px;
  margin-right: 0px;
  color: black;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  text-align: center;
  padding: 3px 15px;
  text-decoration: none;
  background-color: #e2e9ff;
  border: solid 2px #336;
  border-radius: 3em;
}

/* Change color on hover */
nav a:hover {
  background: #fff9ce;
  color: #c82f04;
  font-weight: bold;
  font-family: Verdana,
    Arial, Helvetica, sans-serif;
  border: solid 2px #c82f04;
  border-radius: 3em;
  transition: background-color 0.6s ease;
}

/* Style the top navigation bar */
.navbar {
  position: sticky;
  top: 0px;
  padding: 10px;
  text-align: center;
  background-color: white;
}


/* Style the navigation bar links */
.navbar a {
  color: #336;
  padding: 5px 10px;
  text-decoration: none;
  text-align: center;
  background-color: #e2e9ff;
  border: solid 2px #336;
  border-radius: 3em;
}

/* Change color on hover */
.navbar a:hover {
  background: #fff9ce;
  color: #c82f04;
  font-weight: bold;
  text-decoration: none;
  font-family: Verdana,
    Arial, Helvetica, sans-serif;
  border: solid 2px #c82f04;
  border-radius: 3em;
  transition: background-color 0.6s ease;
}

nav summary {
  list-style-type: "☰";
  font-size: 2em;
  position: auto;
  top: 0px;
  right: 0px;
  cursor: pointer;
}

nav summary:hover {
  font-size: 2em;
  text-shadow: 2px 2px 2px #c82f04;
}

nav summary span {
  font-size: 12px;

}

nav [open] summary {
  list-style-type: "✖";
  color: #c82f04;
}

nav details {
  text-align: left;
}

/* Column container */
.row {
  display: flex;
  flex-wrap: wrap;
}

/* 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: 250px) {

  .row,
  .navbar {
    flex-direction: column;
  }
}

/* Footer */
.footer {
  text-decoration: none;
  text-align: center;
  width: 100%;
  padding: 5px;
  background-color: white;
  border: solid 2px #aabbee;
}

/* Add a background color to the active dot/circle */
.active {
  border: solid 3px #336;
  background-color: #e2e9ff;
}

nav ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.mitte {
  align-items: center;
  background-color: #aabbee;
}