.container {
  background: #fff;
  padding: 2rem 4rem;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.20);
  -moz-box-shadow: 0 0 10px rgba(0,0,0,0.20);
  box-shadow: 0 0 10px rgba(0,0,0,0.20);
}

.container > section {
  margin: 1rem;
}

.title {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-bottom: 1rem;
}

section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
}

section hr.hr {
  color: #333;
  background: #333;
  width: 20rem;
  height: 0.2rem;
  border: none;
}

section img {
  width: 110%;
  margin-bottom: 1rem;
}

.perturbacoes {
  margin-top: 2rem;
}

.button {
  z-index: 1;
}

@media only screen and (max-width: 768px) {
  section img {
    width: 120%;
  }
}

@media only screen and (max-width: 600px) {

  hr.hr {
    max-width: 80%;
  }

  .container {
    padding: 0;
    max-width: 100% !important;
    width: 100% !important;
    border-radius: 0;
  }

  section img {
    width: 106%;
    margin-bottom: 2rem;
  }
}