:root {
  --white: white;
  --black: black;
}

.body {
  color: #fff;
  background-color: #2c2d57;
  font-size: 16px;
}

.container {
  width: 100vw;
  height: 100vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.content-holder {
  max-width: 50%;
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  outline-offset: 40px;
  border-radius: 3px;
  outline: 1px solid #fff;
  flex-direction: column;
  flex: 0 auto;
  padding: 48px;
  display: flex;
}

.link {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .content-holder {
    max-width: 80%;
    outline-offset: 20px;
    padding: 20px;
  }
}
