/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  height: 100vh;
  /* background: linear-gradient(135deg, #4e54c8, #8f94fb); */
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  /* color: #fff; */
}

/* Container Styling */
div {
  text-align: center;
}

/* Image Container */
#first {
  margin-bottom: 30px;
}

#first img {
  margin: 0 15px;
  border: 3px solid transparent;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

#first img:hover {
  transform: scale(1.1);
  border-color: #fff;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

/* Button Styling */
#second {
  margin-top: 10px;
}

#btn {
  padding: 12px 30px;
  background: #ffffff;
  color: #4e54c8;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

#btn:hover {
  background-color: #ffce54;
  color: #000;
  transform: scale(1.05);
}

.active{
      background-color: #ffce54;
  color: #000;
  transform: scale(1.05);
}
img{
    aspect-ratio: 1/1;
    width: 100px;
}::-webkit-scrollbar{
      display: none;
    }