@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.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 280px;
  color: white;
  width: 100%;
}

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

header h2 {
  padding: 0 20px;
}

.content {
  display: flex;
  justify-content: space-between;
}

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

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

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

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

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

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

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

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

.right {
  width: 35%;
}

#count {
  margin-top: 20px;
}

#error {
  color: red;
}

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