@import url(https://fonts.googleapis.com/css?family=Unica+One);
body {
    font: 150%/1.4 "Unica One", sans-serif;
    text-transform: uppercase;
    background: #123;
    color: whitesmoke;
    margin: 0;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    box-sizing: border-box;
    text-align: center;
    overflow-wrap: anywhere;
    gap: 0.6em;
  }

@media (max-width: 600px) {
  body {
    font-size: 120%;
  }
}

/* A link that has not been visited */
a:link {
  color: whitesmoke;
  text-decoration: none;
}
/* A link that has been visited */
a:visited {
  color: whitesmoke;
}
/* A link that is hovered on */
a:hover {
  color:gray;
}
/* A link that is selected */
a:active {
  color: gray;
}