.container {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  max-height: 100vh;
  max-width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
}

.card-container {
  position: relative;
  width: 300px;
  max-height: 600px;
  min-height: 300px;
  padding: 20px;
  border-radius: 3px;
  background-color: #f88321;
  box-shadow: 0 5px 20px 0 #9c9c9c;
  font-family: Lato, sans-serif;
}

.header-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 24px;
  padding: 0px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 20px;
}

.name-tag {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100px;
  height: 24px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #fab275;
}

.heading {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 1.4rem;
  line-height: 25px;
}

.image {
  display: block;
  margin-right: auto;
  margin-left: auto;
  border-radius: 100px;
  background-color: #ffb047;
}

.paragraph {
  margin-bottom: 60px;
  font-size: 16px;
}

