:root {
  --black: #000;
  --white: white;
  --grey: grey;
}

body {
  background-color: var(--black);
  color: var(--white);
}

.full-site {
  background-image: url('../images/shiver25_1.avif');
  background-position: 50%;
  background-repeat: repeat;
  background-size: 500px 500px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
}

.link {
  color: var(--white);
}

.text {
  font-size: 22px;
  font-style: italic;
}

@media screen and (max-width: 767px) {
  .text {
    font-size: 16px;
  }
}

@media screen and (max-width: 479px) {
  .link, .text {
    text-align: center;
  }
}


