body {
  background: #fff !important;
}

.header {
  background-color: rgb(79, 98, 40);
  display: flex;
}

.back {
  > * {
    margin: 20px 0 0 20px;
    position: absolute;
  }
}

.title {
  color: white;
  text-align: center;
  font-size: 60px;
  width: 100%;
  margin: 20px 0;
}

.documents-group {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  background-color: white;
}

.document {
  width: calc(50% - 60px);
  margin: 25px 0;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0px 0px 4px 3px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
}

.document-title {
  font-size: 35px;
  text-align: center;
  width: 60%;
  padding: 0 5px;
}

.document-qr {
  display: flex;
  justify-content: center;
  margin: 20px;
}

@media (max-width: 1200px) {
  .document {
    width: 100%;
    margin: 20px;
  }

  .document-title {
    width: 80%;
  }
}

@media (max-width: 800px) {
  .header {
    flex-wrap: wrap;
  }

  .back {
    > * {
      position: relative;
    }
  }
}