body {
  height: 100vh;
  background: #030325;
  cursor: none;
  margin: 0;
  display: flex;
  font-family: monospace;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px; /* Adjust padding as needed */
  z-index: 1001; /* Ensure it's above the cursor */
  color: #fff;
}

.header-row {
  margin-bottom: 10px; /* Adjust margin as needed */
  color: #fff; /* Text color for the rows */
  cursor: none; /* Remove the cursor */
}

.expanding-list {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  color: #fff;
  padding: 10px;
  z-index: 1002;
  white-space: nowrap; /* Prevent line breaks */
}

.expanding-list ul {
  list-style: none;
  padding: 0;
  margin: 0; /* Remove default margin */
  display: flex; /* Make the list items flex children */
}

.expanding-list li {
  margin-left: 30px; /* Adjust spacing between list items as needed */
  /*cursor: pointer; /* Add pointer cursor */
}

body h1,
body p,
body a {
  color: #fff;
  cursor: none;
  text-decoration: none;
}

body p {
  font-size: 10px;
}

body .footer {
  margin-top: 100px;
  position: fixed;
  bottom: 0;
}

body .cursor {
  pointer-events: none;
}

body .cursor__ball {
  position: fixed;
  top: 0;
  left: 0;
  mix-blend-mode: difference;
  z-index: 1000;
}

body .cursor__ball circle {
  fill: #f7f8fa;
}

/* Add the hover effect for clickable elements */
.clickable-button:hover + .cursor .cursor__ball--big {
  transform: scale(1.2); /* Adjust the scale factor as needed */
}

body .left {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.scroll-page {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(100%);
  transition: transform 0.6s ease-in-out;
}
