body {
  padding: 0;
  margin: 0;
  min-height: 95vh;
  background-color: #fafaf9;
  font-family: "Bebas Neue", "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  color: #000;
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
::selection {
  background-color: #ddff00;
  color: #000;
}
#logo {
  font-size: 40px;
  user-select: none;
  margin-bottom: 3rem;
}
header, main {
  padding: 2rem;
  font-size: 2rem;
}
h1 {
  position: relative;
  margin: 0;
  font-size: 4rem;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
h1 span {
  display: inline-block;
  background: #ddff00;
  padding: 0.1em 0.2em 0 0.2em;
  margin: 0.05em 0;
  width: fit-content;
}
.lightning {
  width: 2rem;
  height: 2rem;
  margin-right: -0.5rem;
}
main a {
  border: 1px solid #000;
  padding: 0.5rem 1rem;
  font-size: 1.3rem;
  background-color: #000;
  color: #fff;
  text-decoration: none;
}
main a:hover {
  border: 1px solid #000;
  background-color: transparent;
  color: black;
}
p {
  font-family: Poppins, Helvetica, sans-serif;
  color: rgb(156 163 175/1);
  font-weight: 400;
  font-size: 1.15rem;
  width: 300px;
  line-height: 1.7rem;
  margin-bottom: 1.6rem;
}
footer p {
  font-size: 0.6rem;
}
footer a {
  position: fixed;
  bottom: 2rem;
  right: 2.2rem;
  transition: transform 0.2s ease;
}
footer a:hover {
  transform: scale(1.2) rotate(-3deg);
}
@media (max-width: 600px) {
  footer a {
    bottom: 1rem;
    right: 1.2rem;
    padding: 0.5rem;
  }
  footer svg {
    width: 25px;
  }
  h1 {
    font-size: 3rem;
  }
  h1 span {
    padding: 0.05em 0.15em 0 0.15em;
    margin: 0.05em 0;
  }
  p {
    max-width: 280px;
    font-size: 1rem;
    line-height: 1.4rem;
  }
}