
#stage {
  position: relative;
  background-image: url(../images/bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 50vh;
  width: 100%;
  padding: 2rem;
  color: white; /* for text visibility */
  z-index: 1;
  overflow: hidden;
}

#stage::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
  z-index: -1;
}

@media screen and (max-width: 768px) {
  #submit{
    margin: auto;
  }
}
#submit{
  background-color: #022A66;
  border: 2px solid #022A66;
}
#submit:hover{
  color: black;
}


