* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

html,
body {
  height: 100%;
  width: 100%;
}

body {
  background-color: #4e3686;
  display: flex;
  justify-content: center;
  align-items: center;
}

#box {
  width: 300px;
  height: 450px;
  background-color: aliceblue;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
}

#box img {
  width: 100%;
  height: 60%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

#box h1 {
  font-size: 35px;
  margin: 8px;
  font-weight: 700;
}

#box h5 {
  font-size: 30px;
  margin: 5px;
  font-weight: 600;
  color: rgb(168, 28, 35);
}

#box button {
  padding: 8px 12px;
  font-size: 15px;
  font-weight: 500;
  margin-top: 10px;
  background-color: #dadada;
  border-radius: 6px;
}
