@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');
body {
  background-image: var(--bg-image);
  background: var(--bg);
  overflow-y: hidden;
  overflow-x: hidden;
  margin: 0;
  top: 0;
}

* {
  font-family: var(--font);
}

.container {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  gap: 15px;
}

.title {
  font-size: 80px;
  margin: 0;
  color: var(--text);
}

footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0 -120px 0;
}

footer span {
  color: var(--text);
  opacity: 0.1;
  margin: 0 7px;
  cursor: default;
}

footer a {
  position: relative;
  color: var(--text);
  opacity: 0.3;
  cursor: pointer;
  transition: 0.2s ease;
  text-decoration: none;
}

footer a:hover {
  opacity: 1;
}

footer a:hover::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  background: var(--text);
  width: 100%;
  height: 1px;
}
