@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}

h1 {
  padding: 48px 96px;
  margin: 4px;
  font-size: 260%;
  letter-spacing: 8px;
}

a {
  width: calc(100% - 48px - 8px);
  padding: 24px;
  margin: 2px;
  display: inline-block;
  transition: all 500ms;
  text-decoration: none;
  letter-spacing: 6px;
  font-size: 110%;
  color: rgb(204, 204, 204);
}

a:hover {
  letter-spacing: 10px;
  color: rgb(255, 255, 255)
}

ul {
  width: 100%;
  display: flex;
  list-style: none;
}

li {
  width: 100%;
  display: inline-block;
  text-align: center;
}

.center {
  position: absolute;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.black {
  background: rgba(0, 0, 0, 0.8);
}

.blur {
  backdrop-filter: blur(12px);
}

#parallax {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("../src/images/background.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-position: 50% 50%;
  background-size: auto 120vh;
  transition: background-position 0.5s ease-out;
}


