a {
  color: #000;
  text-decoration: underline;
}

.flow-state-logo {
  color: #0003;
  width: 100%;
  height: 100vh;
}

.body {
  background-color: #008e99;
}

.logo--fixed {
  text-align: center;
  width: 100%;
  position: fixed;
  top: 0;
}

.content {
  z-index: 99;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  padding: 40px;
  display: flex;
  position: fixed;
  top: 0;
}

.button {
  letter-spacing: .5px;
  text-transform: uppercase;
  background-color: #fff;
  border-radius: 5px;
  padding: 12px 20px;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: all .3s;
}

.button:hover {
  color: #fff;
  background-color: #000;
}

.logo-wrapper {
  height: 300vh;
  position: relative;
}

.div-block {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.heading {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: Ubuntu, Helvetica, sans-serif;
  line-height: 40px;
}

@media screen and (max-width: 767px) {
  .heading {
    font-size: 30px;
    line-height: 32px;
  }
}

@media screen and (max-width: 479px) {
  .content {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    text-align: center;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
  }

  .button {
    text-align: center;
    width: 100%;
  }

  .div-block {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    width: 100%;
  }
}


