.link-normalize {
  color: inherit;
  text-decoration: none;
}
.nav-list {
  padding: 0;
  margin: 0;
  margin-block: 0;
  margin-inline: 0;
  padding-inline: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.illuminating-text {
  transition-property: text-shadow color;
  transition-timing-function: ease-in-out;
  transition-duration: 0.2s;
}
.illuminating-text:hover {
  color: #e0e0e0;
  text-shadow: 0 0 3px #ffffff44;
}
header.main-header {
  background-color: #393939;
  color: #e0e0e0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-height: 10vh;
  border-bottom: 2px solid #9985d7;
  /* Vertical screens */
  /* Large screens */
}
header.main-header h1.headline {
  display: block;
  width: max-content;
  text-align: center;
  margin: 0;
  font-size: 1.6em;
  position: relative;
}
header.main-header h1.headline::before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0.1em;
  top: calc(100% - 0.1em);
  right: 0;
  background: linear-gradient(-45deg, #393939, #d37d31, #d37d31);
  transition: width ease-out 0.2s;
}
header.main-header h1.headline:hover::before {
  width: 100%;
}
header.main-header h1.headline a {
  color: inherit;
  text-decoration: none;
}
header.main-header h1.headline::before {
  left: 0;
}
header.main-header h1.headline:first-letter {
  color: #d37d31;
}
header.main-header nav.navbar {
  width: max-content;
  text-align: center;
}
header.main-header nav.navbar #menu-icon {
  display: none;
  font-size: 1.6em;
  width: fit-content;
  height: fit-content;
}
header.main-header nav.navbar ul.main-nav {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  margin-block: 0;
  margin-inline: 0;
  padding-inline: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  transition-property: color;
  transition-timing-function: ease-in-out;
  transition-duration: 0.2s;
  flex-direction: row;
  align-items: center;
}
header.main-header nav.navbar ul.main-nav a {
  transition-property: color;
  transition-timing-function: ease-in-out;
  transition-duration: 0.2s;
  color: inherit;
  text-decoration: none;
}
header.main-header nav.navbar ul.main-nav:hover {
  color: #adadad;
}
header.main-header nav.navbar ul.main-nav li {
  padding: 0.3em;
  margin-left: 1em;
  height: fit-content;
  position: relative;
  transition-property: color;
}
header.main-header nav.navbar ul.main-nav li::before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0.1em;
  top: calc(100% - 0.1em);
  right: 0;
  background: #e0e0e0;
  transition: width ease-out 0.2s;
}
header.main-header nav.navbar ul.main-nav li:hover::before {
  width: 100%;
}
header.main-header nav.navbar ul.main-nav li a {
  color: inherit;
  text-decoration: none;
}
header.main-header nav.navbar ul.main-nav li:hover {
  color: #fafafa;
}
header.main-header nav.navbar ul.main-nav li:first-child {
  margin-left: 0;
}
header.main-header ul.expandable-nav {
  padding: 0;
  margin: 0;
  margin-block: 0;
  margin-inline: 0;
  padding-inline: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  position: absolute;
}
@media screen and (orientation: portrait) {
  header.main-header {
    position: relative;
  }
  header.main-header nav.navbar #menu-icon {
    display: block;
  }
  header.main-header nav.navbar ul.main-nav {
    display: none;
  }
}
@media screen and (orientation: portrait) and (min-width: 300px) {
  header.main-header {
    font-size: 2.5em;
  }
}
@media screen and (orientation: landscape) and (min-width: 2000px) {
  header.main-header {
    font-size: 1.5em;
  }
}
ul.expandable-nav {
  z-index: 9999;
  padding: 0;
  margin: 0;
  margin-block: 0;
  margin-inline: 0;
  padding-inline: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  background-color: #393939;
  color: #e0e0e0;
  width: 100%;
  text-align: center;
  font-size: 3em;
  padding: 1em 0;
  position: fixed;
  left: 100%;
  transition-property: left;
  transition-timing-function: ease-in-out;
  transition-duration: 0.2s;
  border-bottom: 8px solid #9985d7;
  box-shadow: 0 2px 10px #000000aa;
  display: none;
}
ul.expandable-nav.expanded {
  left: 0;
}
ul.expandable-nav a {
  color: inherit;
  text-decoration: none;
  display: block;
  position: relative;
}
ul.expandable-nav a::before {
  position: absolute;
  content: "";
  width: 30%;
  left: calc(50% - 30% / 2);
  height: 2%;
  bottom: 0;
  background: #9985d7;
  background: linear-gradient(45deg, #d37d31, #9985d7);
}
ul.expandable-nav a:last-child::before {
  display: none;
}
ul.expandable-nav a li {
  padding: 1em;
}
@media screen and (orientation: portrait) {
  ul.expandable-nav {
    display: block;
  }
}
footer.main-footer {
  display: flex;
  align-items: center;
  justify-content: space-around;
  color: #939393;
  background: #393939;
  min-height: 6vh;
  padding: 0.5em;
  font-size: 0.9em;
  font-weight: 400;
}
footer.main-footer p {
  margin: 0;
  text-align: left;
  transition-property: text-shadow color;
  transition-timing-function: ease-in-out;
  transition-duration: 0.2s;
}
footer.main-footer p:hover {
  color: #e0e0e0;
  text-shadow: 0 0 3px #ffffff44;
}
footer.main-footer p a {
  text-decoration: none;
  color: inherit;
}
footer.main-footer ul {
  padding: 0;
  margin: 0;
  margin-block: 0;
  margin-inline: 0;
  padding-inline: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  justify-content: center;
}
footer.main-footer ul a {
  color: inherit;
  text-decoration: none;
  transition-property: text-shadow color;
  transition-timing-function: ease-in-out;
  transition-duration: 0.2s;
}
footer.main-footer ul a:hover {
  color: #e0e0e0;
  text-shadow: 0 0 3px #ffffff44;
}
footer.main-footer ul a li {
  text-align: right;
  padding: 0;
  margin-top: 0.3em;
}
footer.main-footer ul a li:last-child {
  margin-top: 0;
}
@media screen and (orientation: portrait) and (min-width: 320px) {
  footer.main-footer {
    font-size: 2em;
  }
}
.container {
  width: 100%;
  min-height: 94vh;
  padding: 1.3em 7em;
  background-color: #ededed;
}
.container main.content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.container main.content section {
  background: #393939;
  background: linear-gradient(135deg, #202020, #393939);
  color: #ffffff;
  padding: 1.5em;
  margin: 0.4em;
  border-radius: 20px;
}
@media screen and (orientation: portrait) and (min-width: 320px) {
  .container {
    font-size: 2.3em;
    padding: 0.5em;
  }
}
@media screen and (orientation: landscape) and (min-width: 1000px) {
  .container {
    padding: 1.5em 15%;
  }
}
@media screen and (orientation: landscape) and (min-width: 2000px) {
  .container {
    font-size: 1.5em;
    padding: 2em 20%;
  }
}
/*# sourceMappingURL=base.css.map */