* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-tap-highlight-color: transparent;
}
:root {
  --primary-color: #3d365c;
  --secondary-color: #7c4585;
  --third-color: #fccaff;
  --basic-color: #ffffff;
  --text-color: #333;
  --linear-gradiant: linear-gradient(#7c4585, #3d365c);
}
body {
  width: 100%;
  min-height: 100vh;
  background: #191919;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
/* @media (max-width: 480px) {
  .toast {
  width: 250px;
  }
  } */

.gallery-wrap i {
  font-size: 30px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  /* margin: 30px; */
  color: var(--basic-color);
  background: var(--secondary-color);
}
.gallery-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 10% auto;
}

.gallery {
  width: 700px;
  display: flex;
  overflow-x: scroll;
}
.gallery div {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto auto;
  grid-gap: 20px;
  padding: 10px;
  flex: none;
}
.gallery div img {
  width: 100%;
  filter: grayscale(100%);
  transition: transform 0.5s ease;
}
.gallery div img:hover {
  filter: grayscale(0);
  cursor: pointer;
  transform: scale(1.04);
}
.gallery::-webkit-scrollbar {
  display: none;
}
