body {
  background-color: #e1e7e9;
  place-items: center;
  display: grid;
  height: 100vh;
}
.container {
  background-color: white;
  width: 500px;
  height: 550px;
  border-radius: 30px;
}
.pic {
  background-color: #f6f5f8;
  border-radius: 30px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  display: flex;
  justify-content: center;
}
.pic > img {
  width: 300px;
  height: auto;
  margin: 20px 0px;
}
.content {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0px 0px 0px 24px;
}
.bottom-line {
  display: flex;
  align-items: center;
  gap: 7px;
}
.bottom-line > p {
  font-weight: bold;
}
.sub {
  color: #5b5b5b;
  margin: 0px;
}
.bottom {
  display: flex;
  align-items: center;
  gap: 57%;
  margin: 50px 0px 0px 0px;
}
.bottom > p {
  font-size: x-large;
  font-weight: bold;
}
.bottom > button {
  padding: 12px 24px;
  border-radius: 10px;
  background-color: #186f46;
  color: white;
  border: none;
}
