@import url(main.css);

body {
  overflow: scroll;
}

.home-button {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: black;
}

.home-button:hover {
  color: blue;
}

.links__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: red;
}

.links__wrapper a {
  color: black;
}

.links__wrapper a:hover {
  color: blue;
  text-decoration: underline;
}
