body {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #222;
  font-family: 'Roboto', sans-serif;
}

.card {
  width: 311px;
  padding: 15px;
  height: 486px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
}

.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  & img {
    width: 100%;
    height: 278px;
    border-radius: 10px;
  }
}

.card-text {
  text-align: center;
  padding: 0px 30px;
  & .top-text {
    font-weight: bold;
    font-size: 20px;
  }
  & .bottom-text {
    font-weight: 300;
    line-height: 1.25;
    margin-bottom: 20px;
    color: #777;
  }
}
