* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  padding: 20px;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
#card {
  height: 350px;
  width: 250px;
  border-radius: 20px;
  background-image: url("https://transforms.stlzoo.org/production/animals/amur-tiger-01-01.jpg?w=1200&h=1200&auto=compress%2Cformat&fit=crop&dm=1658935145&s=95d03aceddd44dc8271beed46eae30bc");
  background-position: center;
  background-size: cover;
  background-color: antiquewhite;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

#block {
  bottom: -27%;
  height: 100px;
  width: 100%;
  background: linear-gradient(transparent, black);
  color: white;
  position: absolute;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  align-items: center;
  transition: all ease 0.5s;
}
#card:hover #block {
  bottom: 0%;
}
h1 {
  font-size: 25px;
}
#block > i {
  font-size: 25px;
}

#scroll {
  display: flex;
  justify-content: space-around;
  background-color: rgb(255, 255, 255);
  width: 100%;
  height: 60%;
  gap: 40px;
  overflow: auto;
  padding: 3%;
}

#scroll::-webkit-scrollbar {
  background-color: transparent;
  border-radius: 50px;
  height: 8px;
}
#scroll::-webkit-scrollbar-thumb {
  background-color: rgb(8, 46, 63);
  border-radius: 50px;
}

#tiger > h1 {
  font-size: 200px;
  text-align: center;
  color: transparent;
  font-family: sans-serif;
  background-image: url("https://images.hitpaw.com/topics/video-enhancer/cat-gif-enhancement.gif");
  background-clip: text;
}
