* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #b0d3f5;
  font-family: Arial, Helvetica, sans-serif;
}

.container {
  width: 300px;
  height: 460px;
  border: none;
  border-radius: 15px;
  background-color: whitesmoke;
}
.container .image {
  margin-top: 10px;
  width: 100%;
  /* height: 60%;*/
  display: flex;
  justify-content: center;
  align-items: center;
}

.container .image img {
  width: 90%;
  height: 90%;
  border: none;
  border-radius: 10px;
}

.container .content {
  font-size: 0.9em;
  width: 90%;
  text-align: center;
  margin-left: 15px;
  margin-top: 15px;
}

.container .content h2 {
  font-size: larger;
  font-weight: bold;
  letter-spacing: 1px;
}

.container .content p {
  font-size: 1em;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #666464dc;
  margin-top: 10px;
}
