body {
  background: #222;
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui,
    helvetica neue, helvetica, Ubuntu, roboto, noto, arial, sans-serif;
  color: hotpink;
}

a {
  color:aqua;
  text-decoration: none;
  cursor: pointer;
  z-index: 1;
  position: absolute;
}

main {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

h1 {
  font-size: 3.5rem;
}

.container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

button {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  font-size: 0.9rem;
  background: #888;
  padding: 1rem;
  color: white;
  cursor: pointer;
  border-radius: 10px;
  transition: 0.3s ease;
}

button:hover{
  transform: translate(0, -5px);
  background-color: white;
  color: black;
}

footer {
    position: absolute;
    bottom: 0;
}

footer p {
    display: inline;
}

footer a {
    display: inline;
    margin-left: 5px;
}
