body {
  font-family: Arial, sans-serif;
  background-color: black;
  color: white;
}
.header {
  background-color: black;
  position: fixed;
  top: 0;
  z-index: 1000;
  color: white;
  padding: 20px;
  padding-left: 3%; /* Add padding to the left side */
  padding-right: 3%; /* Add padding to the right side */
  height: 150px;
  width: 100%;
}

/* Style the logo image */
.header img {
  width: 100px;
  height: auto;
  float: left;
}

/* Style the navigation menu */
.navbar {
  float: right;
  padding-top: 40px;

}

/* Style the navigation links */
.navbar a {
  display: inline-block;
  color: white;
  text-decoration: none;
  padding: 10px;
  font-family: Arial, sans-serif; /* Change the font family */
  font-size: 12px; /* Change the font size */
  text-transform: uppercase; /* Change the text to uppercase */
  letter-spacing: 4px; /* Add some space between letters */
  margin-right: -10px;
}

/* Change the color of the links on hover */
.navbar a:hover {
  color: grey;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.containerphoto {
  width: 94%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 10px;
  margin-top: 150px;
}
.photo {
  position: relative;
  overflow: hidden;
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo:hover .caption {
  opacity: 1;
}
.caption {
  font-family: Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0,0,0,0.8);
  color: white;
  padding: 10px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.footer {
  background-color: black;
  height: 60px;
  width: 80%;
  max-width: 1200px;
  margin: 20px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer a {
  display: inline-block;
  margin: 10px;
  text-decoration: none;
  color: #333333;
}
.footer a:hover {
  color: #666666;
}
.icon {
  width: 32px;
  height: 32px;
}
.content {
  margin-top: 150px;
  margin-bottom: 50px;
  background-color: black;
  padding-left: 3%; /* Same as header */
  padding-right: 3%; /* Same as header */
  color: white;
  font-family: "Helvetica Neue",Arial,sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.6em;
  letter-spacing: .01em;
  text-rendering: optimizeLegibility;}

.content_small {
  margin: 0 auto;
  margin-top: 150px;
  margin-bottom: 50px;
  background-color: black;
  width: 94%;
  max-width: 1200px;
  color: white;
  font-family: "Helvetica Neue",Arial,sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.6em;
  letter-spacing: .01em;
  text-rendering: optimizeLegibility;
}
.content_big {
  margin: 0 auto;
  margin-top: 150px;
  margin-bottom: 50px;
  background-color: black;
  padding-left: 3%;
  padding-right: 3%;
  color: white;
  font-family: "Helvetica Neue",Arial,sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.6em;
  letter-spacing: .01em;
  text-rendering: optimizeLegibility;}


/* Define a style for the bottom section */
.bottom-section {
  width: 100%;
  height: 50px;
  background-color: lightgray;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
}

