@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;

}

.cursor {
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  mix-blend-mode: difference;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 3px;
  
}

.text-container {
  background-color: black;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 8vw;
  font-weight: 700;
  color: white;
  letter-spacing: 1vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  cursor: default;
}
.page1{
  height: 100%;
  width: 100%;
  background-color: black;
}

.page2{
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to bottom right, yellow, red );
  display: flex;
  justify-content: center;
  align-items: center;
}

.red{
  height: 30%;
  width: 60%;
  background-image: linear-gradient(to bottom right, red, yellow);
}