body {
  background-image: url('./imgs/backgound.png');
  color: #fff;
  padding: 100px 0px;
  background-size: cover;
  padding-bottom: 0;
}

section.not-logged-in {
  margin-top: 40px;
}

.page-heading {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.page-heading h1 {
  text-align: center;
  color: #416ebf;
  font-family: gothamMedium;
}

.page-heading h1 span {
  padding: 5px;
  background-color: #eeb232;
  color: #fff;
}

.page-heading h2 {
  text-align: center;
  color: #416ebf;
  margin-top: 20px;
  margin-bottom: 30px;
  font-family: gothamBold;
}

.page-heading h4 {
  text-align: center;
  color: #416ebf;
  font-weight: 400;
  width: 50%;
  margin-bottom: 50px;
  font-family: gothamBook;
}

.page-body {
  display: flex;
  justify-content: center;
  align-content: center;
  width: 100%;
}

.balao-amarelo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  background-color: #eeb232;
  width: 320px;
  height: 370px;
  border-radius: 10px;
  padding: 25px;
  z-index: 1;
}

.balao-amarelo img {
  width: 25px;
  margin-right: 8px;
}

.balao-amarelo h5 {
  color: #416ebf;
  margin-bottom: 15px;
  font-family: gothamBook;
}

.balao-amarelo h6 {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.balao-amarelo h6 a {
  color: #fff;
  font-family: gothamBook;
  display: flex;
  align-items: flex-end;
}

.seta-balao-amarelo::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  width: 0;
  height: 0;
  margin-top: 300px;
  border-top: 50px solid transparent;
  border-bottom: 50px solid transparent;
  border-left: 50px solid #eeb232;
  border-radius: 10px;
  position: relative;
  z-index: 0;
  margin-left: -50px;
}


@media only screen and (max-width: 420px) {
  .page-heading h4 {
    width: 80%;
  }
}