html {
  height: 99vh;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
}

body {
  background-image: url("./assets/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(247, 162, 234, 0.597);
  pointer-events: none;
  z-index: -1;
}

.github {
  position: absolute;
  right: 20px;
  top: 10px;
  background-color: rgba(247, 85, 223, 0.925);
  color: black;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 20px;
  border: 2px solid black;
  border-radius: 5px;

  &:hover {
    transform: scale(1.1);
    transition: all ease 0.2s;
    background-color: rgb(247, 85, 223);
  }
}
