* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Gilroy";
}

html,
body {
  height: 100%;
  width: 100%;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: cornflowerblue;
}

#card {
  height: 450px;
  width: 330px;
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
}

#card img {
  height: 55%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

#card h1 {
  align-items: center;
  font-family: Arial, sans-serif;
  font-size: 25px;
  margin: 10px;
  margin-left: 28px;
}

#card h3 {
  font-family: Arial;
  margin: 15px;
  margin-left: 30%;
}

#btn-container #add {
  margin-top: 20px;

  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: 15px;
  padding: 10px;
  border: none;
  color: white;
  background-color: rgb(81, 83, 218);
  border-radius: 15px;
  height: 40px;
  width: 8rem;
  cursor: pointer;
}

#btn-container {
  justify-content: space-between;
  display: flex;
}

#card #remove {
  cursor: pointer;
  font-weight: 545;
  margin-top: 20px;
  border-radius: 15px;
  height: 40px;
  width: 8rem;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: 15px;
  padding: 10px;
  border: none;
  color: black;
  background-color: rgba(72, 82, 82, 0.348);
}

#btn-container #add:hover {
  background-color: rgb(117, 119, 220);
}

#card #remove:hover {
  background-color: rgba(139, 162, 162, 0.863);
}

.btncng {
  display: none;
}
.msg {
  font-size: 1.7rem;
  font-family: sans-serif;
  font-weight: 549;
  padding-top: 10%;
  color: rgb(10, 7, 73);
}
