﻿#main {
    background-color: #0D99E8;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 100vh;
}

#description{
    text-align: center;
}

#left-section-container {
    order: 1;
    flex-basis: 30%;
    width: 100%;
}

#center-section-container {
    order: 2;
    padding: 15px;
    flex-basis: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
}

#right-section-container {
    order: 3;
    flex-basis: 30%;
}

#survey-form {
    width: 500px;
    background-color: white;
    border-radius: 5px;
    padding: 15px;
}

#inputs {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.input-section-one {
    text-align: center;
}
#list {
    display: flex;
    flex-direction: row;
}

textarea{
    width: 480px;
}
#title{
    color: white;
    font-size: 5vh;
}
#description{
    color: white;
}
#submit{

}