*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:'Trebuchet MS';
}

html,body{
  height: 100%;
  width: 100%;
}
body{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: cornflowerblue;
}
#card{
  height: 450px;
  width: 300px;
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}
#card img{
  height: 55%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  background-size: 100% 100%;
}
#card h1{
  font-size: 25px;
  margin: 10px 0px;
  font-weight: 900;
}
#card h5{
  font-size: 20px;
  color: red;
  margin: 20px
}
#btnContainer button{
  padding: 13px 20px;
  margin: 10px 0px;
  background-color: cadetblue;
  color: white;
  font-weight: 700;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s;
}
#btnContainer button:hover{
  opacity: 0.7;
}
#btnContainer button:active{
  background-color: rgb(91, 201, 205);
}