* {
  margin: 0;
  padding: 0;
  font-family: OsloSans, Arial, sans-serif;
  font-weight: 400;
  box-sizing: border-box;
}

body {
  background-color: #f5f5f5;
  color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 30px auto;
}

header {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
header img {
  height: 30px;
}

main {
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
  width: 100%;
}

#container {
  background-color: #ffffff;
  display: flex;
  flex-flow: row wrap;
  border-radius: 10px;
}
#container p {
  width: 100%;
  margin-left: 10px;
  margin-bottom: 20px;
}
#container h3 {
  margin-left: 10px;
}
#container h3:nth-child(3) {
  width: 30%;
}
#container h3:nth-child(4) {
  width: 49%;
}
#container form {
  width: 100%;
  margin-left: 10px;
  margin-bottom: 10px;
}
#container form label {
  display: block;
  width: 100%;
}
#container form input {
  border: 1px solid #1ca0b4;
  background-color: white;
  border-radius: 5px;
  height: 30px;
  width: 300px;
}
#container form button {
  height: 31px;
  background-color: #81d3ee;
  border: none;
  border-radius: 5px;
  padding: 0 5px;
}

#characters {
  width: 100%;
  border-top: #81d3ee solid 2px;
  padding-top: 5px;
  margin-top: 5px;
}
#characters div {
  display: flex;
  flex-flow: row wrap;
  justify-content: start;
  width: 100%;
  margin-bottom: 10px;
}
#characters div h3 {
  width: 30%;
}
#characters div button {
  font-size: 15px;
  margin-right: 1%;
  margin-left: 1%;
  background-color: #ffffff;
  border: none;
  color: black;
  width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 100%;
}
#characters div button:hover {
  background-color: #81d3ee;
  transition-duration: 0.2s;
}
#characters div div {
  width: 50%;
}

#background {
  width: 100%;
  background-color: #1ca0b4;
  color: #ffffff;
  height: 60px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  text-align: center;
  align-self: center;
  padding: 5px;
  border-radius: 10px;
}
#background h3, #background p {
  min-width: 100%;
  margin: 0;
}

#schools {
  width: 100%;
  background-color: #ffffff;
  border-radius: 0 0 10px 10px;
}
#schools div {
  margin: 10px 0;
  border-radius: 10px;
}
#schools div h3 {
  margin: 0 20px;
}
#schools div p {
  margin: 0 20px;
}
#schools div p:last-child {
  text-align: end;
}
#schools div:last-of-type {
  margin: 0;
}

.under {
  background-color: #81d3ee;
}

@font-face {
  font-family: OsloSans;
  font-weight: 400;
  font-style: normal;
  src: url(/fonts/OsloSans-Regular.woff);
  font-display: swap;
}
@media (max-width: 1200px) {
  header h1, header img {
    padding: 0 10px;
  }
  header, main {
    width: 95%;
  }
}
@media (max-width: 700px) {
  header {
    height: 40px;
    font-size: 12px;
  }
  header img {
    height: 20px;
  }
  #characters div h3 {
    min-width: 100%;
  }
  #characters div div {
    width: 85%;
  }
}
@media (max-width: 470px) {
  header {
    height: 30px;
    font-size: 8px;
  }
  img {
    height: 15px;
  }
}

/*# sourceMappingURL=styles.css.map */
