* {
  font-family: "Poppins", sans-serif;
}

.toggle-color{
  color: #2B7FFF;
}

.icon{
  font-weight: 700;
  font-size: 200px;
}













.card-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.display-card {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgb(221, 215, 215);
  border-radius: 8px;
}

.overlay-card {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  position: absolute;
  top: 0;
  background-color: rgba(36, 34, 34, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
}
/* overley property */
.overlay-card span{
  border: 1px solid white;
  padding: 2px 10px;
  border-radius: 8px;
  color: white;
  font-size: 1.2rem;
  
}
.card-container:hover .overlay-card {
 opacity: 100;
}
.card-container:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 8px;
}
.card-image-container {
  height: 10rem;
}
.card-image {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.card-container:hover .card-image {
  transform: scale(1.1);
  transition-duration: 200ms;
}