html,
body {
  font-family: "Arimo", sans-serif;
  font-family: "Lobster", cursive;
  font-family: "Poppins", sans-serif;
}

body {
  height: 98vh;
  width: 98vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-jurassic {
  width: 375px;
  height: auto;
}
.card-jurassic .head {
  background: black;
  color: white;
  border-bottom: 10px solid #f9d340;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-jurassic .head img {
  height: 160px;
}
.card-jurassic .body {
  background: red;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0.75rem 0;
  font-size: 25px;
}
.card-jurassic .footer {
  border: 10px solid black;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 0 0.55rem;
}
.card-jurassic .footer img {
  height: 100px;
  width: 200px;
  -o-object-fit: fill;
  object-fit: fill;
  transform: scale(1.1);
}

.bold {
  font-weight: bold;
}
