html {
  overflow-x: hidden;
  overflow-y: auto;
  background: black;
  font-family: Inter;
  font-weight: 325;
  letter-spacing: -0.8px;
  line-height: 1.4;
}
h1, h2, h3 {
  font-family: Urbanist;
  letter-spacing: -1.5px;
  margin: 0;
  color: white;
  font-weight: 450;
  -webkit-filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.5));
}
h1 {
  font-size: 60px;
}
h2 {
  font-size: 30px;
}
h2.is-large {
  font-size: 40px;
}
p {
  color: white;
  font-size: 18px;
  letter-spacing: -0.3px;
}
p a {
  color: #ff7700;
}
em {
  color: #ff7700;
  font-style: normal;
}
::selection {
  background: #ff7700;
}
.is-parent.is-narrow {
  display: inline-block;
}
.is-background {
  position: fixed;
  width: 100%;
  height: 100%;
}
.content {
  position: absolute;
  display: flex;
  width: 100%;
  min-height: 100%;
  text-align: center;
  -webkit-align-items: center;
}
.centered-panel {
  margin: auto;
}
.is-centered {
  box-sizing: border-box;
  width: 100vw;
  max-width: 575px;
}
.is-centered.is-narrow {
  max-width: 475px;
}
.is-centered.is-wide {
  max-width: 675px;
}
.client-logo {
  margin-bottom: 75px;
}
.client-logo img {
  -webkit-filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
}
.is-background > .is-cover {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  -webkit-filter: blur(9px);
  z-index: -1;
}
.is-background::before {
  content: "";
  display: block;
  position: absolute;
  top: -25px;
  left: -25px;
  right: -25px;
  bottom: -25px;
  background: black;
  opacity: 0.4;
  z-index: 1;
}
.logo {
  position: fixed;
  top: 25px;
  left: 25px;
  z-index: 1;
}
.logo img {
  -webkit-filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
}
.avatar img {
  margin-bottom: 25px;
  border-radius: 35px;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
  background: white;
}
.is-hidden {
  display: none;
}
.is-invisible {
  opacity: 0;
  transform: translateY(5px);
  pointer-events: none;
}
@media (max-width: 800px) {
  h1 {
    font-size: 45px;
  }
  h2 {
    font-size: 27px;
  }
  p {
    font-size: 17px;
  }
  .content {
    padding-top: 60px;
  }
}
@media (max-width: 480px) {
  .logo {
    display: none;
  }
}
