@font-face {
    font-family: 'GT Alpina';
    src: url('/assets/fonts/GTAlpina-CondLight.woff2') format('woff2'),
        url('/assets/fonts/GTAlpina-CondLight.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

*{
  box-sizing: border-box;
}

:root {
  --grey: rgb(151, 151, 151);
}

body {
  width: 100%;
  font-family: 'GT Alpina', serif;
  color: var(--grey);
  stroke-linejoin: round;
  paint-order: stroke fill;
  font-size: 20px;
  line-height: 1;
  padding: 0;
  margin: 0;


  /* @media screen and (max-width: 2000px) {
    font-size: 18px;
    -webkit-text-stroke: 2px var(--grey);
  }
  @media screen and (max-width: 1500px) {
    font-size: px;
    -webkit-text-stroke: 1.6px var(--grey);
  } */
}

p {
  padding: 0;
  margin: 0;
}

a, a:visited {
  color: var(--grey);
  text-decoration: none;
  /* text-decoration: underline var(--grey); */
  /* text-decoration-thickness: 2px; */

  &:hover {
    opacity: 0.5;
  }
}

.vert-spacer {
  display: block;
  width: 100%;
  height: calc(var(--spacing-unit)*4)
}

.content-wrapper {
  position: absolute;
  z-index: 1;
  top: 0;
  right:0;
  bottom: 0;
  left: 0;
}

.padding-placement {
  width: 100%;
  height: 100%;
  position: relative;
}

.text-wrapper {
  position: relative;
  z-index: 3;
}

.grid {
  position: fixed;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
}

.dot {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  position: relative;

  &:after {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 8px;
    background-color: var(--grey);
  }
  &:before {
    content: "";
    display: block;
    position: absolute;
    width: 8px;
    height: 1px;
    background-color: var(--grey);
  }
}

.dots-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.dot-line {
  position: absolute;
  width: 100%;
  left: 0;

  &:nth-child(1) {
    top: 0%;
  }
  &:nth-child(2) {
    top: 33.333%;
  }
  &:nth-child(3) {
    top: 66.666%;
  }
  &:nth-child(4) {
    top: 100%;
  }

  .dot:nth-child(2) {
    margin-left: 25%;
  }
  .dot:nth-child(3) {
    margin-left: 50%;
  }
  .dot:nth-child(4) {
    margin-left: 75%;
  }
  .dot:nth-child(5) {
    margin-left: 100%;
  }
}


.short-presentation {
  text-indent: 16.666%;
}

.all-hidden-assets {
  display: none;
}

.image-display {
  /* height: 100%;
  width: 100%; */
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: 0;

  .media-item {
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: absolute;

    &.h-1 {
      left: 0;
    }
    &.h-2 {
      left: 25%;
    }
    &.h-3 {
      left: 50%;
    }
    &.h-4 {
      left: 75%;
      max-width: 25%;
    }

    &.v-1 {
      top: 0;
      max-height: 100%;
    }
    &.v-2 {
      top: 33.333%;
      max-height: 66.666%;
    }
    &.v-3 {
      top: 66.666%;
      max-height: 33.333%;
    }

    &.portrait {
      width: 25%;
    }
    &.landscape {
      width: 50%;
    }
    &.square {
      width: 50%;
    }

    img, video {
      width: 100%;
      height: auto;
      object-fit: cover;
    }

  }
}
