:root { font-family: Inter, sans-serif; }
  @supports (font-variation-settings: normal) {
    :root { font-family: InterVariable, sans-serif; }
  }

@media (min-width: 500px) {
    :root {
        --f-size: 17px;
        --f-lineheight: 32px
    }
}

@media (min-width: 2000px) {
    :root {
        --f-size: 20px;
        --f-lineheight: 38px
    }
}

@font-face {
font-family: 'InterVariable';
font-style: normal;
src: url(font-inter/InterVariable.woff2) format('woff2');
}


body {
    padding:1rem 1.5rem; margin: 0.5vw;
    color: #191919;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, blockquote, pre, hr, {
    margin: auto;
}

h1 {
letter-spacing: -0.5vw;
font-size: 24.0vw;
text-align: center;
line-height: 90%;
width: auto;
padding: 100px 0 0 0; margin:0 0 2.0vw 0;
font-weight: 200;
}

h2 {
font-size: 2.0vw;
text-align: left;
line-height: 90%;
width: auto;
padding: 0; margin: 0 0 1.0vw 0;
font-weight: 100;
border-top: 1px solid #000;
width: 100%;
padding: 1vw 0vw 2vw 0vw;
}

h3 {
font-size: 2.0vw;
text-align: left;
line-height: 120%;
width: auto;
padding: 0; margin: 1.0vw 0 1.0vw 0;
font-weight: 200;
padding: 0 0 4.0vw 0;
}

h4 {
font-size: 1.0vw;
text-align: left;
line-height: 130%;
width: auto;
padding: 0; margin: 1.0vw 0 1.0vw 0;
font-weight: 200;
padding: 0 0 4.0vw 0;
}


p {
letter-spacing: -0.1vw;
font-size: 6.0vw;
text-align: left;
line-height: 100%;
width: auto;
padding: 0; margin: 0 0 4.0vw 0;
font-weight: 200;
}

a, a:hover {
    color: #3C82F6; text-decoration: none;
}

em, i {
    font-style:italic
}
bold, strong {
    font-weight: 600;
}

.button {
    font-size: 2.0vw; color: #FFF;
    letter-spacing: 0.1vw;
    text-align: center;
    line-height: 100%;
    width: auto;
    padding: 10px 20px; margin: 20px 0 0 0;
    font-weight: 200;
    border: 1px solid #191919;
    background: #191919;
}
.button:hover, .button-details:hover, .button-past:hover {
    background: #3C82F6; border: 1px solid #3C82F6; color: #FFF;
}
.button-details {
    font-size: 2.0vw; color: #191919;
    letter-spacing: 0.1vw;
    text-align: center;
    line-height: 100%;
    width: auto;
    padding: 10px 20px; margin: 20px 0 0 20px;
    font-weight: 200;
    border: 1px solid #191919;
    background: #FFF;
}
.button-past {
    font-size: 2.0vw; color: #191919;
    letter-spacing: 0.1vw;
    text-align: center;
    line-height: 100%;
    width: auto;
    padding: 10px 20px; margin: 20px 0 0 20px;
    font-weight: 100;
    border: 1px solid #666;
    background: #FFF;
}

.responsive-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
}

/* modal stuff below */
.modal-window {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.66);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: ease 0.3s;

  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
  border-radius: 16px;

  &:target {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  & > div {
    width: 400px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 2em;
    background: white;
  }
  header {
    font-weight: bold;
  }
  h1 {
    font-size: 150%;
    margin: 0 0 15px;
  }
}

.modal-close {
  color: #aaa;
  line-height: 50px;
  font-size: 80%;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 70px;
  text-decoration: none;
  &:hover {
    color: black;
  }
}

.modal-window {
  & > div {
    border-radius: 1rem;
  }
}

.modal-window div:not(:last-of-type) {
  margin-bottom: 15px;
}





