@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Kanit:wght@100&family=Lobster&display=swap');

.page {
  width: 80%;
  margin: 0 auto;
  background-color: blanchedalmond;
  color: darkgray;
}

.header__nav {
  display: flex;
  justify-content: space-between;
  text-align: center;
  margin-top: 60px;
}
.header__link {
  cursor: pointer;
  font-size: 1.2rem;
  font-family: 'Kanit', sans-serif;
  font-weight: 100;
}
.header__link:hover {
  text-decoration: underline overline;
}
.header__link--title {
  font-weight: bold;
  font-size: 50px;
  font-family: 'Lobster', cursive;
}
.header__icon {
  cursor: pointer;
  font-size: 1.2rem;
  font-family: 'Kanit', sans-serif;
  font-weight: 100;
}
.header__icon--title {
  font-weight: bold;
  font-size: 1.5rem;
}
.header__icon--title:hover {
  text-decoration: underline overline;
}

.divider {
  margin-top: 60px;
  background-color: darkgrey;
  width: 100%;
  height: 2px;
}

.main {
  width: 100%;
}
.main__ämne {
  display: flex;
  justify-content: space-around;
  width: 100%;
}
.main__ämne__block {
  background-color: white;
  width: 250px;
  height: 300px;
  border: black 2px solid;
  text-align: center;
  margin: 0 auto;
  box-shadow: black 2px 2px 4px;
  transition: box-shadow 0.2s ease;
   font-family: 'Anton', sans-serif;
}
.main__ämne__block:hover {
  box-shadow: black 4px 4px 7px;
}
.main__ämne__block__bild {
  width: 70%;
  margin: auto;
  box-shadow: none !important;
  pointer-events: none;
}
/* ✅ SPECIAL-DIV */
.special {
  background-color: yellow;
  color: red;
  font-weight: bold;
}
.special:hover {
  box-shadow: red 4px 4px 7px;
}

.footer {
  display: flex;
  justify-content: space-around;
  width: 100%;
}
.footer__list {
  padding: 0;
}
.footer__item {
  margin: 5px 0;
}/*# sourceMappingURL=index.css.map */