body {
  font-family: Body, sans-serif;
  color: #333;
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
}

a {
  color: hsla(0, 0%, 100%, 0.5);
  font-size: 1.25em;
  text-decoration: none;
}

.is_blue {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #194597;
}

.site-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 100vh;
  padding: 2em;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.content {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-row-gap: 0.75em;
}

.logo {
  width: 30em;
}

.separator {
  width: 100%;
  height: 1px;
  background-color: hsla(0, 0%, 100%, 0.17);
}

.inline {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  grid-column-gap: 3.5em;
}

.link {
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  color: #fff;
}

.link:hover {
  color: hsla(0, 0%, 100%, 0.5);
}

.background {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 1;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 479px) {
  .content {
    padding-right: 2em;
    padding-left: 2em;
  }

  .logo {
    width: 20em;
  }

  .inline {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@font-face {
  font-family: 'Body';
  src: url('../fonts/body.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}