body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    margin: 0;
  }
  #titleContainer {
    position: relative;
    display: flex;
    flex: 0 0 auto;
    align-items: center; 
    justify-content: center;
    padding: 20px;
    /* background-color: #004c0b; */
    background-image: url('./Assets/Header.png');
    background-size: cover;
    text-align: center;
    /* height: 15%; */
  }
  #headerText {
    font-size: 24px;
    color: #fcfffb;   
    font-size: 25px;
    font-family: "Open Sans";
    text-align: center;
    z-index: 1; 
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 100px;
    padding-right: 100px;
    box-sizing: border-box;
    height: auto;
}

  #surveyContainer {
    flex: 1 1 auto;
    position: relative;
  }
  #surveyElement {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 100%;
    height: 100%;
  }


#leftLogo, #rightLogo {
    position: absolute;
    top: 50%; 
    transform: translateY(-50%); 
    height: calc(100% - 15px); 
    width: auto;
}

#leftLogo {
    left: 0; 
}

#rightLogo {
    right: 0; 
}

@media (max-width: 600px) {
    #headerText {
        font-size: 15px; 
        padding-left: 90px; 
        padding-right: 80px;
        padding-bottom: 20px;
        padding-top: 20px;
    }
    #leftLogo, #rightLogo {
      position: absolute;
      top: 50%; 
      transform: translateY(-50%); 
      height: calc(80% - 15px); 
      width: auto;
  }

}