body{
font-family: 'Open Sans', sans-serif;
}
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background-image: linear-gradient(115deg,rgba(101, 48, 199, 0.8),rgba(180, 165, 209, 0.7)),
  url(https://static.independent.co.uk/s3fs-public/thumbnails/image/2017/07/11/11/harold-0.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.container{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header{
  margin-top: 20px;
}
#title{
  font-size: 40px;
  text-align: center;
  margin-bottom: 5px;
  color: white;
}
#description{
  font-style: italic;
  text-align: center;
  margin-bottom: 30px;
  color: white;
}
.survey-form{
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 5px;
  padding-left: 30px;
  padding-right: 100px;
  padding-top: 15px;
  padding-bottom: 20px;
  width: auto;
}
.group{
  margin-top:5px;
}
.input{
  width: 113%;
  border-radius: 5px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 6px;
  padding-bottom: 6px;
}
::placeholder{
  color: white;
}
#name-label{
display: block;
margin-bottom: 3px;
color: white;
}
#name{
  background-color: rgba(0, 0, 0, 0.2);
  border-color:  	transparent;
  color: white;
}
#email-label{
display: block;
margin-bottom: 3px;
margin-top: 15px;
color: white;
}
#email{
  background-color: rgba(0, 0, 0, 0.2);
  border-color:  	transparent;
  color: white;
}
#number-label{
display: block;
margin-bottom: 3px;
margin-top: 15px;
color: white;
}
#number{
  background-color: rgba(0, 0, 0, 0.2);
  border-color:  	transparent;
  color: white;
}
#dropdown{
width: 118%;
background-color: rgba(0, 0, 0, 0.2);
border-color:  	transparent;
color: white;
}
.role{
  color: white;
  margin-bottom: 3px;
}
.menu{
  color: white;
  background-color: rgb(77, 77, 77);
}
.buttons{
  color: white;
  display: flex;
  margin-top: 8px;
}
#fav{
width: 118%;
background-color: rgba(0, 0, 0, 0.2);
border-color:  	transparent;
color: white;
}
#comments{
  background-color: rgba(0, 0, 0, 0.2);
  border-color: transparent;
  width: 115%;
  color: white;
  margin-top: 3px;
  font-family: 'Open Sans';
  font-size: 15px;
  border-radius: 5px;
}
#submit{
  display: flex;
  justify-content: center;
  width: 117%;
}
.submit-button{
  background-color: rgba(102, 255, 102, .7);
  border-color: transparent;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 20px;
  color: white;
  font-size: 15px;
  font-family: 'Open Sans';
  border-radius: 5px;
}
