/* General Page Styling */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to right, #e0eafc, #cfdef3);
  color: #333;
}

/* Container to center everything */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}

/* Heading */
h1 {
  font-size: 2.5em;
  margin-bottom: 40px;
}

/* Grid for images */
.image-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

/* Each image box */
.image-box {
  background-color: #e0fffd;
  border-radius: 10px;
  padding: 20px;
  width: 180px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.image-box:hover {
  transform: translateY(-5px);
}

/* Image styling */
.myImage {
  width: 100%;
  height: auto;
  border: 4px solid transparent;
  border-radius: 8px;
  transition: border 0.4s ease;
  object-fit: cover;
}

/* Caption below image */
.image-box p {
  margin-top: 10px;
  font-weight: bold;
  /* background-color: #23c8f1; */
}

/* Button styling */
button#changeBorderBtn {
  margin-top: 40px;
  padding: 12px 30px;
  font-size: 16px;
  background-color: #0077cc;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 119, 204, 0.2);
  transition: background-color 0.3s, transform 0.2s;
}

button#changeBorderBtn:hover {
  background-color: #005fa3;
  transform: scale(1.05);
}
