html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
.page-wrapper {
  background: #2e2e2e;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  flex-direction: column;
}
@font-face {
    font-family: "Big Shoulders Display";
    src: url("fonts/Big_Shoulders_Display/BigShouldersDisplay-VariableFont_wght.ttf");
}
@font-face {
    font-family: "Montserrat";
    src: url("fonts/Montserrat/Montserrat-VariableFont_wght.ttf");
}
h1 {
  font-family: 'Big Shoulders Display', cursive;
  font-size: 8em;
  color: #ffffff;
  margin: 0 0 0.2em;
  z-index: 1;
  position: relative;
  text-transform: uppercase;
}
p {
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
  z-index: 1;
  position: relative;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
p span.at {
  padding: 0 10px;
  font-size: 1.5em;
}
a {
  color: #ffffff;
}
svg {
  filter: blur(0.5em);
  opacity: 0.8;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 600px) {
  header {
    order: 2;
  }
  h1 {
    font-size: 5em;
  }
  p {
    font-size: 1em;
    flex-direction: column;
    order: 3;
  }
  p.order {
    order: 1;
    margin-bottom: 50px;
  }
  p span {
    display: block;
    margin-bottom: 2px;
    font-size: 1.8em;
  }
  p span.at {
    padding: 0 10px;
    font-size: 3em;
  }
  p a {
    display: block;
    font-size: 14px;
  }
}