
/* Glass Wrapper */
.glass-wrapper {
  width: 100%;

  display: flex;
  justify-content: center;
  
  margin-top: 20px;
  align-items: center;


}

.glass-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 2vw;
  align-items: center;
}

.glass-box {
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 2vw;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  padding: 3vw 4vw;
  color: #fff;
  width: 90%;
  max-width: 90%;
  z-index: 20;
  
}

/* Text */
.glass-text {
  font-size: 1rem;
  line-height: 1.6;
}







