@font-face {
  font-family: "NB International";
  src: url("nb-international-light.woff2") format("woff2");
}
body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100dvh;
}

body, h1, p {
  font-family: "NB International", sans-serif;
  font-weight: 300;
  font-size: clamp(15px, 3vw, 21px);
  line-height: 140%;
  padding: 0;
  margin: 0;
  color: #727272;
}
body ::-moz-selection, h1 ::-moz-selection, p ::-moz-selection {
  background: #120081;
}
body ::selection, h1 ::selection, p ::selection {
  background: #120081;
}
body span, body a, h1 span, h1 a, p span, p a {
  color: #000000;
  text-decoration: none;
}
body a, h1 a, p a {
  border-bottom: 1px #000000 solid;
}

h1 {
  margin-bottom: 1em;
}
@media screen and (max-width: 500px) {
  h1 {
    margin-bottom: 16px;
  }
}

.intro {
  margin: 40px;
}
@media screen and (max-width: 500px) {
  .intro {
    margin: 16px;
  }
  .intro br {
    display: none;
  }
}

.contact {
  margin: 40px;
}
@media screen and (max-width: 500px) {
  .contact {
    margin: 16px;
  }
}
.contact ul {
  margin-bottom: 1em;
}
@media screen and (max-width: 500px) {
  .contact ul {
    margin-bottom: 16px;
  }
}
.contact ul, .contact ul li {
  list-style: none;
  padding: 0;
}

.slideshow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.slideshow video {
  width: 50vw;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
@media screen and (max-width: 500px) {
  .slideshow {
    position: relative;
    transform: translate(0, 0);
    margin: 16px;
    top: auto;
    left: auto;
    text-align: center;
  }
  .slideshow video {
    width: calc(80vw - 32px);
  }
}

.bar {
  position: fixed;
  height: 5px;
  width: 0px;
  background-color: black;
  transition: 400ms ease;
}
@media screen and (max-width: 500px) {
  .bar {
    height: 3px;
  }
}
.bar.loaded {
  height: 0;
}/*# sourceMappingURL=styles.css.map */