*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

html {
  height: 100%;
  width: 100%;
}

body {
  height: 100%;
  width: 100%;
  background-color: rgb(29, 43, 54);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrapper {
  text-align: center;
}

h1 {
  font-size: 2.5rem;
  margin: 1rem;
}

p {
  margin: 1rem;
}

a:link {
  color: #809fff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:visited {
  color: #809fff;
}

a:active {
  color: white;
}

