@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;600&display=swap');

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

body, html {
  height: 100%;
  width: 100%;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  cursor: none; /* hide default cursor */
  display: flex;
  justify-content: center;
  align-items: center;
  background: black; /* fallback if gradient fails */
  position: relative;
}

/* Canvas full screen */
#bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

/* Centered container */
.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #eaeaea;
  z-index: 2;
}

h1 {
  font-size: 4rem;
  transition: 0.3s;
}

h1:hover {
  color: #4da6ff;
}

p {
  color: #aaa;
  margin-top: 10px;
}

/* Custom cursor */
#cursor {
  position: fixed;
  width: 15px;
  height: 15px;
  background: #4da6ff;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.05s ease;
}
