/* Font setup */
body {
  margin: 0;
  background-color: rgb(20, 20, 20);
  font-family: "Roboto Condensed", sans-serif;
  overflow: hidden;
}

/* Main container */
.main {
  max-width: 80vw;
  padding: 3rem;
  border-radius: 1rem;
  margin: 10vh auto;
  color: white;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: box-shadow 0.4s ease;
  cursor: pointer;
}

/* Combined outset + inset shadow */
.shadow-box {
  box-shadow:
    10px 10px 200px 30px rgba(0, 0, 0, 0.8),
    inset 10px 10px 200px 5px rgba(0, 0, 0, 0.8)
}

/* Animate shadow on hover */
.shadow-box:hover {
  box-shadow:
    20px 20px 200px 35px rgba(0, 0, 0, 0.9),
    inset 20px 20px 200px 5px rgba(0, 0, 0, 0.9)
}

.footer {
      position: fixed;
      bottom: 1rem;
      left: 50%;
      transform: translateX(-50%);
      padding: 0.5rem 1rem;
      font-size: 1rem;
      max-width: 90vw;
      width: auto;
      color: white;
}
.gng {
      width: 70%;
      max-width: 70%;
      max-height: 70%;
      display: flex;
      justify-content: center;
      align-items: center;
}