  /* Page background and default font */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #ffeef3; /* Pastel pink */
  line-height: 1.6;
}

/* Top header area */
header {
  background-color: #ffffff;
  padding: 15px;
  text-align: center;
  border-bottom: 2px solid #dddddd;
}

/* Navigation links inside the header */
nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #000000;
  font-weight: bold;
}

/* Main sections */
section {
  background-color: #ffffff;
  margin: 15px auto;
  padding: 20px;
  max-width: 700px;

  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Placeholder box for images or content */
.placeholder {
  width: 120px;
  height: 120px;
  background-color: lightgray;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;
}

/* Footer styling */
footer {
  text-align: center;
  padding: 15px;
  margin-top: 20px;

  background-color: #ffffff;
  border-top: 2px solid #dddddd;
}

/*Sets text to the right of images*/
.image-float {
    float: left; 
    margin-right: 10px; 
    width: 200px; 
}
/*Set size of image*/

img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
}
/* Gallery container */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* Each image and caption block */
.gallery figure {
  background-color: #ffffff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin: 0; /* remove default figure margin */
}

/* Images in gallery */
.gallery img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

/* Captions in gallery*/
.gallery figcaption {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #333333;
}