* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Quicksand', sans-serif;
}

body {
  background: whitesmoke;
  overflow-x: hidden;
}

.top {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}

.brand {
  color: #3d4ad8;
}

.collection {
  text-decoration: none;
  color: black;
}

/* SLIDER */

.slider {
  width: 100%;
  height: 55vh;
  overflow: hidden;
}

.pages {
  display: flex;
  width: 200%;              
  height: 100%;
  transition: transform 0.8s ease;
}

.page {
  width: 50%;               
  display: flex;
  align-items: flex-start;
}

.page img {
  width: calc(100% / 3);
  max-height: 95%;
  height: auto;          
  object-fit: contain;
  object-position: top;
}



.dots {
  position: absolute;
  bottom: 25px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
}

.dot.active {
  background: white;
}

.empty {
  height: 30vh;
  background: whitesmoke;
    
}



h1 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
}
