@font-face {
  font-family: Raleway;
  src: url(./Raleway-VariableFont_wght.ttf);
  font-weight: regular;
}
body {
  height: 100vh;
  width: 100vw;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  overflow: hidden;
}
.main {
  width: 100%;
  height: 90%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
}
p, a {
  color: #fff;
  font-family: Raleway;
  font-weight: normal;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
}
p {
  line-height: 1.3em;
}
a {
  font-weight: bold;
  letter-spacing: 5px;
}
.sublink {
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 1px;
}
.at {
  position: relative;
  bottom: 2px;

  font-weight: 900;
}
.maillink {
  transition: all 0.2s;
}
.maillink:hover {
  letter-spacing: 8px;
}
.spacer {
  flex-basis: 50%
}

.bottom, .top {
  max-width: 30%;
  flex-basis: 25%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-around;
}

@-ms-viewport{
  width: device-width;
}

/*BACKGROUND VIDEO */

.bgvid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: flex;
}
.contrast {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0.1;
  background-image: radial-gradient(circle at center center, #000000, #ffffff), repeating-radial-gradient(circle at center center, #000000, #000000, 4px, transparent 8px, transparent 4px);
  background-blend-mode: multiply;
}
video {
  min-width: 100%;
  min-height: 100%;
  z-index: -2;
}
@-ms-viewport{
  width: device-width;
}


@media (max-width: 768px){
  body {
    max-height: -webkit-fill-available;
  }
  .main {
    height: 100%;
  }
  video {
    scale: 1.6;
  }
  .spacer {
    flex-basis: 40%;
  }
.bottom, .top {
    flex-basis: 30%;
    max-width: 90%;
    font-size: 14px;
  }
  a, p, .sublink {
    font-size: 14px;
  }

  svg {
    max-width: 80%;
  }
}
