* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.content-text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 10000;
}

.content-text div {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  z-index: 10000;
  width: 100%;
}

.content-text a {
  font-size: 16px;
  color: white;
  text-decoration: none;
}

h1 {
  font-size: 3rem;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  z-index: 10000;
}

span {
  font-size: 2rem;
}

.background-image {
  width: 100vw;
  height: 100vh;
  z-index: -70;
  position: fixed;
  display: flex;
  justify-content: center;
}

.background-image-cover {
  position: fixed;
  background-color: rgb(0, 0, 0);
  width: 100%;
  height: 100%;
  opacity: 0.4;
  filter: blur(200px);
}

.background-image img {
  width: 150%;
  height: 150%;
  object-fit: cover;
  object-position: center;
  z-index: -91;
  filter: blur(2px);
}