/* Allgemeines */
html, body {
  height: 100%;
}

body {
  margin: 0;
  background-color: white;
  font-family: Arial;
  text-align: left;
  width: 100%;

}

header {
  background-color:white;
  padding: 20px;
  text-align: left;
  font-size: 25px;
  color: rgb(80, 120, 146);
}

@media screen and (max-width: 5700px) {
  h1 {
    font-size: 40px;
  }
}

.homepage-link {
  display: flex;
  color: inherit;
  text-decoration: none;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 900px) {
  .homepage-link {
    flex-direction: column;
  }
  .logo {
    order: -1;
  }
}

.logo {
  width: auto;
  max-width: 100%;
  height: 150px;
}

section {
  background-color:white;
  text-align: left;
  font-size: 25px;
  color: black;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 10%;
  padding-right: 10%;
}

@media screen and (max-width: 900px) {
  section {
   padding-left: 5%;
   padding-right: 5%;
  } 
}

footer{
  background-color: rgb(80, 120, 146);
  text-align: left;
  font-size: 15px;
  color: white;
  padding: 40px;
}

.button-group {
  display: flex;
  justify-content: space-around;
}

.button {
  background-color: rgb(80, 120, 146); 
  color: white; 
  width: 20%;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  border: 5px solid rgb(80, 120, 146);
}

.button:hover {
  background-color: white;
  color: rgb(139,0,0);
  border: 5px solid rgb(139,0,0);
}

.button.aktiv {
  color: rgb(139,0,0);
  border: 5px solid rgb(139,0,0);
  background-color: white;
}

@media screen and (max-width: 900px) {
  .button-group {
    flex-direction: column;
    align-items: center;
  }

  .button {
   margin-bottom: 10px;
   width: 30%;
  }

  .button:last-child {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 720px) {
  .button-group {
    flex-direction: column;
    align-items: center;
  }

  .button {
   margin-bottom: 10px;
   width: 40%;
  }

  .button:last-child {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 570px) {
  .button-group {
    flex-direction: column;
    align-items: center;
  }

  .button {
   margin-bottom: 10px;
   width: 70%;
  }

  .button:last-child {
    margin-bottom: 0;
  }
}

.info-menu {
  margin-top: 15px;
  cursor: pointer;
}

.info-menu:first-child {
  margin-top: 0;
}

.info-menu-ueberschrift {
  color: rgb(80, 120, 146);
  border: 5px solid rgb(80, 120, 146);
  background-color: white;
  color:rgb(80,120,146);
  font-size: 18px;
  padding: 20px;
  font-weight: bold;
  text-align: center;
}

.info-menu-beschreibung {
  display: none;
  font-size: 15px;
  background-color: rgb(238,233,233); 
  color: black;
  padding: 20px; 
}

.info-menu-beschreibung.show {
  display: block;
}

/* Medienkonzept */


/* Mediencurriculum */
.mediencurriculum-box {
  background-color: rgb(80, 120, 146);
  color: white;
  padding: 40px;
}

.text {
  background-color: white;
  color: black;
  padding: 40px;
  margin-top: 20px;
  text-align: left;
  font-size: 15px;
}

.formular {
  display: flex;
  margin-top: -10px;
  flex-wrap: wrap;
}

.formularfeld {
  margin-right: 10px;
  margin-top: 10px;
  padding: 10px;
  max-width: 100%;
  font-size: 15px;
  color: rgb(80, 120, 146);
  border: none;
  outline: none;
}

.formularfeld:last-child {
  margin-right: 0;
}

.formularfeld input[type="checkbox"] {
  transform: scale(2);
  margin-right: 10px;
}

label.formularfeld {
  color: white;
}

.formular .filters {
  display: flex;
  flex-wrap: wrap;
}

.formular .search {
  display: flex;
  width: 100%;
  padding-top: 15px;
  justify-content: center;
}

.formular .search .formularfeld {
  flex: 1;
}

.mkr-liste {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  list-style: none;
}

.mkr {
  margin-right: 10px;
  padding: 10px 20px;
  text-align: center;
  position: relative;
}

.mkr-info-box {
  display: none;
  padding: 10px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  width: 400px;
  background-color: inherit;
}

@media screen and (max-width:1200px){
  .mkr-info-box {
    min-width: 200px;
    width: auto;
  }

  .medienkompetenz {
    display: flex;
    flex-direction: column;
  }

  .mkr-liste {
    order: 99;
  }

  .mkr {
    margin-top: 10px;
  }
}

.mkr:hover > .mkr-info-box {
  display: block;
}

.mkr-info-box p {
  margin-top: 5px;
  margin-bottom: 0;
}

.mkr-info-box p:first-child {
  margin-top: 0;
}

.medienkompetenz {
  padding: 20px 0;
  border-bottom: 1px solid rgb(80, 120, 146);
}

/* Team */
.person {
  color:black;
  margin: 0;
  margin-top: 15px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width:530px){
  .person .person-img {
    order: -1;
    padding: 0;
  }

  .person {
    flex-direction: column;
    align-items: flex-start;
  }

  .person-info {
    padding-top: 20px;
  }
}

.person-info ul {
  margin: 0;
  margin-top: 10px;
  padding: 0;
  list-style-position: inside;
}

.person-img {
  width: auto;
  max-width: 100%;
  height: 130px;
  padding: 30px;
}
