@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400&display=swap');

* {
  box-sizing: border-box;
}

body {
  background-color: #f4f6f7;
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

.container {
  display: flex;
  padding: 20px;
  margin: 0 auto;
  max-width: 100%;
  width: 800px;
}

aside {
  padding: 10px 20px;
  width: 250px;
  border-right: 1px solid #111;
}

button {
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #111;
  display: block;
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 14px;
  text-align: start;
}

button:hover {
  background-color: #cccdcf;
}

main {
  flex: 1;
  padding: 10px 20px;
}

h1 {
  margin-bottom: 0;
}

h2 {
  padding-bottom: 10px;
  margin: 0 0 20px;
}

h2, h3 {
  border-bottom: 1px solid #111;
  font-weight: 300;
  display: flex;
  justify-content: space-between;
}

h3 {
  background-color: #fff;
  padding: 10px;
  margin: 20px 0 0;
}

p {
  margin-bottom: 0;
}

i {
  padding-left: 10px;
}

.person {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  margin-bottom: 10px;
}