/* importing google fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

::selection {
  color: #fff;
  background: #007bff;
}
.panel-image {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: #333333;
  padding: 10px;
  margin-top: 5px;
}

.panel-image > div {
  flex: 1 1 30%;
  margin: 5px;
  display: flex;
  justify-content: center;
}

.panel-image img {
  padding: 10px;
  width: 250px;
  height: 395px;
  display: block;
  margin: 0 auto;
  border-radius: 15px; /* Add border-radius for rounded borders */
  transition: transform 0.3s ease; /* Add transition for smooth animation */
}

.panel-image img:hover {
  transform: scale(1.05); /* Increase scale on hover */
}

@media (max-width: 950px) {
  /* Mobile devices */
  .panel-image > div {
    flex: 1 1 calc(50% - 10px);
  }
  img {
    width: 150px;
  }
}
