body{
  background-color: skyblue;

  width: 100%;
  padding: 0;
  margin: 0;
}

#title{
  text-align: center;
}
#title-form-center{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top:50px ;
}

#form-style{
  display: flex;
  flex-direction: column;
  justify-content:space-between ;
  align-items: center;
}
#title {
  font-size: 33px;
  color: #333;
}

#label {
  font-size: 24px;
  color: #666;
  margin-bottom: 1rem;
}

#sName {
  padding: 20px;
  border: 1px solid;
  border-color: rebeccapurple;
  border-radius: 4px;
  margin-bottom: 12px;
}

#submit-button {
  margin-bottom: 16px;
  padding: 14px 24px;
  background-color: #337ab7;
  color: #fff;
  border: none;
  border-radius: 4px;
  ;
  
}

#imgContainer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items:center;
  flex-wrap: wrap;
  gap: 16px 16px;

}

.image-container img {
  width: 100%;
  height: auto;
}
