* {
  padding: 0;
  margin: 0;
}

body,
h1,
h3,
h4,
h5,
h6 {
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  font-weight: 100;
  color: white;
}

.card:hover {
  color: rgb(164, 176, 176);
  scale: 1.2;
  transition: 0.2s;
}

#searchbar {
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-size: 16px;
  width: 35%;
  transition-duration: 0.5s;
  transition-timing-function: ease;
}
#searchbar:focus {
  width: 60%;
  border: 2px solid #555;
  border-radius: 8px;
}

img {
  height: auto;
  max-height: 990px;
  width: 145px;
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: middle;
  border-radius: 25px;
  max-height: 145px;
  max-width: 145px;
}

.icon {
  border-radius: 25px;
}

.card {
  transition: 0.1s;
  width: 158px;
  background-color: transparent;
  margin: 16px;
  float: left;
}

body {
  background-color: #5e7594;
}
/* Existing styles */

.image-container {
  position: relative;
  overflow: hidden;
}

.image-container:hover .item-name {
  opacity: 1;
}

.item-name {
  position: absolute;
  bottom: 0;
  left: 7.45px;
  width: 78.5%;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  margin: 0px;
  opacity: 0;
  transition: opacity 0.2s;
  border-bottom-left-radius: 500px;
  border-bottom-right-radius: 500px;
  font-size: 12px;
}
