* {
  box-sizing: border-box;
}
body {
  background: rgba(225,225,225);
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

.container {
    display: flex;
    padding: 20px;
    margin: 0 auto;
    max-width: 100%;
    width: 800px;
    height: 75vh;
    margin-top: 5%;
    background: #fff;
}

.btn {
  padding: 10px 20px;
  width: 250px;
  border-right: 1px solid #111;
}

button {
  cursor: pointer;
  background-color: #0556f3;
  border-radius: 5px;
  border: solid 1px #0556f3;
  color: white;
  display: block;
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 14px;
  transition: .5s ease-out;
}
button:hover{
background-color: #3c63b0;
color: white;
border: #0556f3;
transition: .5s ease-in-out;
}

main {
  flex: 1;
  padding: 10px 20px;
}
h1,h2,h3{
    color: black !important;
}

h2 {
  border-bottom: 1px solid #111;
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
  color: white;
  font-weight: 300;
  margin: 0 0 20px;
}

h3 {
  background-color: #fff;
  border-bottom: 1px solid #111;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  font-weight: 300;
  margin: 20px 0 0;
}

.person {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  margin-bottom: 10px;
}
