body{
  background-color: #cccccc;
  background-attachment:fixed;
  background-size: 100%;
}

h3{
  margin-top: 20px; 
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 650;
  text-align: left;
  color: white;
}

.headerbox-form {
  position: relative;
  display: block;
  z-index: 1;

  left: calc(50% - 225px); 
  
  top: 80px;
  width: 450px;
  height: 100px;
  padding: 10px 20px;
  border-radius: 5px;
  
  text-align: center;
  background: #aaaaaa;
  color: white;

  backdrop-filter: blur(10px); /* Apply blur effect to content behind */
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 5px 5px rgba(15, 15, 15, 0.3);

}  

  .headerbox-form h1{
    padding-top: 5px;
    font-size: 1.7rem;
  }
    
  .headerbox-form h2{
    padding-top: 10px; 
    font-size: 1rem;
    font-weight: 600;
  }


/* general info form */
.general-info {
  position: relative;
  display: flex;
  flex-direction: ROW;

  left: calc(50% - 400px);
  
  margin-top: 20px;
  top: 120px;
  width: 800px;
  height: 400px;
  padding: 20px;
  border-radius: 10px;

  text-align: center;
  background: #aaaaaa;
  color: white;
  border: none;

  border: 3px dashed #dad9d9;
  box-shadow: 0 5px 5px rgba(15, 15, 15, 0.3);
}

.inputs {
  position: relative;
  display: block;
  
  height: 50px;
  width: 350px;
  border-radius: 50px;

  color: rgb(75, 75, 75);
  font-weight: 700;
  text-indent: 5%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
  .inputs:focus{
    outline: 3px solid white;
  }
  .general-info h3{
    text-indent: 10px;
  }
  .general-info h2 {
    margin-top: 20px;
    padding-bottom: 20px;
    text-shadow:
    -1px -1px #555555, 
    1px -1px #555555,
    -1px 1px #555555,
    1px 1px #555555;
  }
  #descriptionid {
    height: 150px;
    border-radius: 15px;

    text-wrap: wrap;
    font-size: 0.8rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }


  /* left submit fields */
  .left-info {
    display: flex;
    flex-direction: column;
  }

  .right-info {
    display: flex;
    flex-direction: column;
    margin-left: 40px;
  }

.map-selection {
  position: relative;
  display: block;

  left: calc(50% - 350px);
  
  top: 150px;
  width: 700px;
  height: 550px;
  padding: 20px;
  border-radius: 10px;

  text-align: center;
  background: #aaaaaa;
  color: white;
  border: none;

  border: 3px dashed #dad9d9;
  box-shadow: 0 5px 5px rgba(15, 15, 15, 0.3);
}
  .map-selection h3{
    text-indent: 30px;
  }

  #map {
  top: 20px;

  left: calc(50%);
  transform: translateX(-50%);

  width: 600px;
  height: 400px;
  border-radius: 10px;
  border: 3px solid #c0c0c0;
  background-color: rgb(190, 211, 187);
  }

  #map-test{
  top: 20px;

  width: 100%;
  height: 400px;
  border-radius: 10px;
  border: 3px solid #c0c0c0;
  background-color: rgb(190, 211, 187);
  }



  /* submit button */
  #submitid {
    top: 180px;
    width: 150px;
    height: 50px;

    left: calc(50%);
    transform: translateX(-50%);

    color: #696969;
    font-weight: 600;
    font-size: 1rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }




  
