* {
  box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

body {
  background: black;
}

.container {
  display: flex;
  justify-content: center;
}

.list {
  list-style: none;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.item {
  flex-basis: calc((100% - 60px) / 3); 
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.img-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.img {
  width: 97%;
  height: 97%;
  object-fit: cover;
  display: block;
  border: 2px solid white;
  transition: transform 0.4s ease;
}

.img-wrapper:hover .img {
  transform: scale(1.1);
}

.btn {
  display: block;
  margin: 20px auto; 
  background-color: black;
  color: white;
  border: 1px solid white;
  padding: 18px 44px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s;
}
.btn:hover{
  transition:  100ms;
  background-color: indigo;
  border: 1px solid indigo;
}

.btn-reset {
  margin-left: 12px;
  background-color: transparent;
  border: 1px solid #444;
  color: #aaa;
}

.btn-reset:hover {
  background-color: darkred;
  border-color: darkred;
  color: white;
}