@charset "UTF-8";
/* CSS Document */

body {
  font-family: helvetica;
  position: relative;
}

.container {
  max-width: 960px;
  padding: 0 2%;
  margin: 0 auto;
}

.wrapper {
  background-image: url('../img/header.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-color: #CAC2AD;
  height: 300px;
  color: white;
  width: 100%;
}

header h1 {
  padding: 40px 20px 10px;
}

header h2 {
  padding: 0 20px;
}

.content h1 {
  margin: 20px 0;
  color: #F0AA27;
}

.content h2 {
  margin: 10px 0;
  color: #D84005;
}

.content ul {
  margin-left: 3%;
}

.content li {
  list-style-type: initial;
}

.content .list-container {
  background: #cccccc;
  padding: 10px;
}

.content .list-container p {
  margin-bottom: 5px;
}

.content .textarea-wrapper textarea {
  height: 150px;
  width: 300px;
}

.question {
  width: 100%;
  background-color: #77FFA3;
  padding: 10px;
}

.button-wrapper {
  display: flex;
  justify-content: space-around;
}

.button-wrapper .button {
  background-color: red;
  border-radius: 5px;
  color: white;
  padding: 10px;
  margin: 20px 0;
}

.active.feedback-wrapper {
  background: gray;
  color: white;
  padding: 20px;
}

.question-wrapper .answer {
  width: 100%;
  background-color: #CAC2AD;
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid white;
}

#answer4 {
  border-bottom: none;
}

.question-wrapper .feedback {
  width: 100%;
  background-color: #B44442;
  padding: 10px;
}

footer {
  margin-top: 20px;
  width: 100%;
  padding: 10px 0;
  text-align: center;
  background: #cccccc;
  color: black;
  position: absolute;
  bottom: -46px;
}
