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

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

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

header {
  background-image: url('../img/header.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 280px;
  color: black;
  width: 100%;
}

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

header h2 {
  padding: 0 20px;
}

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

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

.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 {
  display: flex;
  justify-content: space-around;
}

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

.content .button {
  padding: 5px 10px;
  background: #A67C55;
  color: white;
  font-size: 18px;
  width: 200px;
  text-align: center;
  margin: 10px 0;
  border-radius: 6px;
  border: 1px solid #A67C55;
  cursor: pointer;
}

.content .button:hover {
  color: #A67C55;
  background: transparent;
}

.content span {
  color: red;
}

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