* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f4f4f4;
}

button {
  display: block;
  text-align: center;
  padding: .5rem 0;
  margin-top: 1rem;
  border: 1px solid black;
  border-radius: 5px;
  font-size: 1rem;
  background: #fff;
  width: 210px;
}

button:hover {
  cursor: pointer;
}

h1 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
  font-weight: 700;
  margin-top: 2rem;
}

li {
  list-style: none;
}

.application-cotainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: top;
      -ms-flex-align: top;
          align-items: top;
}

.person-data-container {
  margin-top: 1rem;
  margin-left: 2rem;
  border-left: 1px solid black;
}

.person-data-container .person-data-list {
  width: 450px;
}

.person-data-container .person-data-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: .3rem;
  margin-left: 1rem;
}

.person-data-container .person-data-list-item strong, .person-data-container .person-data-list-item span {
  font-size: 1.2rem;
  font-weight: bold;
}

.person-data-container .person-data-list-item span {
  font-weight: normal;
}

.person-data-container .person-data-list-item:nth-child(2) {
  padding-top: 1rem;
}

.person-data-container .person-data-list-item-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 1rem;
  border-bottom: 1px solid black;
  padding-bottom: .7rem;
}

.person-data-container .person-data-list-item-heading span, .person-data-container .person-data-list-item-heading strong {
  font-weight: normal;
  font-size: 1.5rem;
}

.person-data-container .white-background {
  background: #fff;
  border-bottom: 1px solid black;
  margin-top: 1rem;
}

.person-data-container .white-background strong {
  font-weight: lighter;
}
/*# sourceMappingURL=style.css.map */