html {
  margin: 0;
  padding: 0;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 60px;
  background: #c4d0c9;
}

h1, h2, h3, h4, p {
  color: rgb(98,98,98);
}

.btn {
  font-size: 14px;
  color: white !important;
  background-color: #008037;
  border: 0;
  border-radius: 40px;
}

.btn:hover {
  background-color: #14438f;
}

@media (min-width: 576px) {
  .btn {
    border-radius: 20px;
  }
}

#wrapper {
  width: 100%;
  height: 100vh;
  background: rgb(255,255,255);
}

.container {
  max-width: 800px;
  padding: 0px 30px 20px 30px;
  overflow: auto;
}

#conteudo {
  min-height: 300px;
}

#conteudo h1 {
  font-size: 2.5em;
}

footer {
  width: 100%;
  height: 80px;
  background-color: #14438f;
}

