@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
  --inter: "Inter", sans-serif;
  --poppins: "Poppins", sans-serif;
  --fcMain: rgba(255, 255, 255, 0.9);
  --fcSecondary: rgba(255, 255, 255, 0.85);
  --fcSub: rgba(255, 255, 255, 0.8);
  --fcWater: rgba(255, 255, 255, 0.5);
}

html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, var(--inter);
  font-weight: 500;
  /* background: linear-gradient(to top left, #121212, #121212, #2c2c2c); */
  color: var(--fcMain);
  font-size: 17px;
  word-spacing: 1px;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.bg {
  background: linear-gradient(to top left, #121212, #121212, #242424);
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.CenteredText {
  text-align: center;
}

.Unselectable {
  user-select: none;
}

.Title {
  position: absolute;
  left: 35vw;
  top: 45%;
  transform: translate(-50%, -50%);
}

.Title h1 {
  font-weight: 900;
  font-size: 3rem;
  line-height: 0.5;
}

.Title p {
  color: var(--fcSub);
  font-family: var(--poppins);
}

.MainButton {
  outline: none;
  background-color: white;
  border: none;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 0.75em;
  padding-bottom: 0.75em;
  border-radius: 11px;
  font-family: var(--inter);
  transition: color, border, background-color 250ms ease-in-out;
}

.MainButton:hover,
.MainButton:active {
  cursor: pointer;
}

.MainButton:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.MainButton:active {
  background-color: rgba(255, 255, 255, 0.7);
}

footer {
  position: fixed;
  bottom: 1em;
  left: 1em;
  color: var(--fcWater);
  font-size: .85rem;
}

@media (max-width: 1024px) {
  .Title {
    left: 50%;
    top: 50%;
    text-align: center;
  }
}
