.div-block {
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: flex;
}

.body {
  background-color: #fff0;
}

.div-block-2 {
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 20px;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.button {
  color: #fff;
  border: 3px solid #fff;
  border-radius: 17px;
  padding: 10px 20px;
  font-family: Inconsolata, monospace;
  font-size: 25px;
  font-weight: 700;
  line-height: 25px;
  text-decoration: none;
  box-shadow: 3px 3px #fff;
}

@media screen and (max-width: 479px) {
  .div-block-2 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }

  .button {
    font-size: 22px;
    line-height: 22px;
  }
}


