/* nunito-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/nunito-v31-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


body {
  background: #67AEE1;
  font-family: 'Nunito';
  color: #000;
  margin: 0;
  padding: 0;
  text-align: center;
}

header {
  position: sticky;
  z-index: 10;
  height: 100px;
  top: 0;
  background: #67AEE1;
  padding: 0px 20px;
  display: flex;
  justify-content: space-between;
}

header img {
  min-width: 100%;

}

nav {
  flex-grow: 8;
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 600;
  font-size: larger;
}

nav a:hover {
  color: #36649c;
}

main {
  background: #fff;
  padding: 20px;
}

.programm {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

}

.schattenbox {
  margin: 10px;
  border-radius: 15px;
  overflow: hidden;
  background: #fefefe;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
}

.schattenbox:hover {
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.2);
}

.schattenbox img {
  max-width: 100%;
}

.film-info {
  padding: 10px;
}

.schattenbox h2 {
  margin: 0 0 10px;
  color: #36649c;
}

.schattenbox h3 {
  margin: 0 0 10px;
  color: #36649c;
}

.film-info p {
  margin: 0 0 5px;
}

footer {
  position: sticky;
  bottom: 0;
  width: 100%;
  background: #67aee1;
  color: white;
  margin-top: 40px;
}

details summary {
  display: flex;
  justify-content: space-around;
  align-items: center;
  cursor: pointer;
}


details summary::-webkit-details-marker {
  display: none;
}

a {
  text-decoration: none;
  color: #36649c;
}

a:hover {
  text-decoration: underline;
}

button {
  font-family: 'Nunito';
  background: none;
  border: none;
}

[popover] {
  border-radius: 15px;
  border-color: #36649c;
  margin-left: 5%;
  margin-right: 5%;
}