body {
  font-family: Arial, sans-serif;
  background-color: #f3f3f3;
  margin: 0;
  padding: 0;
  text-align: center;
}

header {
  background-color: #000001 ;
  color: white;
  padding: 20px;
}

h1 {
  margin: 0;
}

#showCapsBtn {
  margin: 20px;
  padding: 12px 24px;
  font-size: 16px;
  background-color: #4e5153;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.caps-container {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.cap {
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 220px;
  padding: 15px;
  text-align: center;
}

.cap img {
  width: 100%;
  border-radius: 10px;
}

.cap button {
  margin-top: 10px;
  background-color: #28a745;
  color: white;
  border: none;
  padding: 10px;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
}

.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 30px;
  text-align: center;
  line-height: 60px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

@media (max-width: 600px) {
  .cap {
    width: 90%;
  }
}
