.welcome-section {
    height: 400px;
    position: relative;
    color: white;
    display: flex;
    justify-content: end;
    align-items: center;
}

.extras {
    height: 400px;
    position: relative;
    color: white;
    display: flex;
    justify-content: end;
    align-items: center;
}

.welcome-text {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    margin-right: 50px;
    max-width: 400px;
}

.survey-btn {
    margin-top: 20px;
}


.navigation {
    position: fixed;
    top: 0;
    width: 100%;
}

#navigationheading {
    font-family: 'Trebuchet MS', Arial, sans-serif;
    text-align: center;
}

#navlinks {
    text-align: center;
}

.navbutton {
    display: inline-block;
}

.required{
    color:red
}

.user-profile-image {
    text-align: center;
    margin-bottom: 15px;
  }

.user-profile-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
  }

.user-profile-image .default-icon {
    font-size: 150px;
    color: grey;
  }

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }

.form-col {
    flex: 1 1 45%;
    min-width: 250px;
  }


