/* #waves {
  display: block;
  width: 100vw;
  height: 60vh;
} */

a {
  all: unset;
}

.top-navigation__a:hover {
  cursor: pointer;
  text-decoration: underline;
}

.top-navigation__a.active {
  font-weight: 600;
}

.active-link {
  font-weight: 600;
}

.waves {
  position: fixed; /* Makes it stick to the viewport */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1; /* Places it behind other content */
  pointer-events: none; /* Optional: so mouse clicks pass through */
}

html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  font-family: Inter, sans-serif;
  margin: 0;
  background: #202020;
  display: flex;
  flex-direction: column;
  /* align-items: center;
  justify-content: center; */
}

.main-card {
  position: relative;

  background-color: transparent;

  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  
  min-width: min-content;
  max-width: 650px;
  padding: 20px 20px; /* y, x */
  padding-bottom: 20px;

  color: white;
  border-radius: 16px;

  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 5px rgb(0 0 0 / 0.15);
}

.main-card__h1 {
  margin-top: 12px;
  margin-bottom: 42px;

  line-height: 1.3ch;
  color: rgb(230, 230, 230);
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 92px;
}


.main-card__p {
  color: rgb(230, 230, 230);
  font-family: "Source Code Pro", monospace;
  font-weight: 400;
  font-size: 20px;
}

.main-card__p--top {
  margin-left: 8px;
}

.container {
  padding: 0px 15px;
  flex: 1; /* Takes up remaining space */
  display: flex;
  justify-content: center; /* Horizontal centering */
  align-items: center;     /* Vertical centering */
}

.top-navigation {
  display: flex;
  gap: 12px;
  justify-content: center;
  padding: 16px 0px;

  color: rgb(230, 230, 230);
  font-family: "Source Code Pro", monospace;
  font-weight: 300;
  font-size: 20px;

  border-bottom: 2px solid #111;
}