@charset "UTF-8";
body {
  font: 100% Arial, Helvetica, sans-serif;
  color: #F0F7F7;
}

.lightbluemidnightblue {
  background-color: #89AFC8;
  color: #152E54;
}

.darkbluemintwhite {
  background-color: #152E54;
  color: #F0F7F7;
}

.mintwhitedarkblue {
  background-color: #F0F7F7;
  color: #152E54;
}

.button {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #152E54;
  padding: 16px 32px 16px 32px;
  border-radius: 100px;
  text-decoration: none;
  float: right;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 5%;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #10132A;
  background-color: #10132A;
  opacity: 90%;
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

.modal-content {
  background-color: #F0F7F7;
  color: #10132A;
  margin: auto;
  padding: 20px;
  border: 1px solid #89AFC8;
  width: 70%;
  height: 80%;
  padding-left: 5%;
  padding-right: 5%;
  overflow: scroll;
  display: flex;
  flex-direction: column;
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
  opacity: 100%;
}

.modal-content2 {
  background-color: #F0F7F7;
  color: #10132A;
  margin: auto;
  padding: 20px;
  border: 1px solid #89AFC8;
  width: 80%;
  height: 50%;
  overflow: scroll;
  text-align: center;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

.close {
  color: #10132A;
  text-align: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover, .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-content a {
  text-decoration: none;
}

.modal-content h2 {
  color: #10132A;
}

@media screen and (min-width: 768px) {
  .modal-content {
    width: 65%;
  }
  .modal-content2 {
    width: 60%;
  }
}
/*För större skärmar*/
@media screen and (min-width: 1024px) {
  .modal-content {
    width: 80%;
  }
  .modal-content2 {
    width: 40%;
  }
}/*# sourceMappingURL=modal.css.map */