@import url("https://fonts.googleapis.com/css2?family=Shantell+Sans:ital,wght@0,300..800;1,300..800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  flex-direction: column;
  overflow: hidden;
  background: #000;
}

a {
  position: fixed;
  bottom: 20px;
  right: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  color: #fff;
  font-family: "Shantell Sans";
  text-decoration: none;
  &:hover {
    background: rgba(255, 255, 255, 0.4);
  }
}
