@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Color+Emoji&family=Roboto:ital,wght@0,900;1,900&display=swap');

body {
  font-family: Arial, sans-serif;
  background-image: url(images/darkBG.jpg);
  background-size: cover;
  background-position: center;
  margin: 0;
  height: 100vh;
  color: rgb(225, 255, 229);
}

/* Full-page glass card */
.glass-card {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(100% - 60px);
  height: calc(100% - 60px);
  margin: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1),
              inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center; /* centers horizontally */
  align-items: center;     /* centers vertically */
  text-align: center;
}

/* Keep your nice extra glow effects */
.glass-card1::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(180deg, rgba(57,57,57,0.21) 1%, rgba(151,151,151,0.35) 100%);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  pointer-events: none;
}



h1, h2, h3 {
  margin-bottom: 20px;
}

h1 {
  font-size: 50px;
  font-family: "Newsreader", serif;
}

h2, h3 {
  font-size: 30px;
   font-family: "Roboto", sans-serif;
}


.corner-img {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: clamp(100px, 10vw, 220px);
  height: auto;
  z-index: 9999;
}
