

.footer {
  background-color: #fff;
  color: #fff;
  padding: 20px 0;
}

footer {
  background-color:  #fff;
  color: black;
  padding: 20px 0;
  text-align: center;
}

.footer-icons {
  display: inline-block;
  margin-right: 20px;
  margin-right: 10px;
}

.footer-icons a {
  color: black;
  font-size: 24px;
  margin-right: 10px;
}

.footer-text {
  display: inline-block;
  margin-right: 50px;
  
}

.footer-text p {
  margin: 0;
}

body {
  background-color: #FFFFFF;
  font-family: montserrat, sans-serif;
}

.social-icons {
  display: flex;
  justify-content: left;
  align-items: left;
  margin-top: 20px;
  margin-left: 90px;
}

.social-icons a {
  margin: 0 10px;
  color: #333;
  font-size: 24px;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.social-icons a:hover {
  color: #0077B5;
}


/* Reset styles for header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  margin-left: 50px;
  margin-right: 50px;
}


/* Style for logo */
.logo a {
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  font: 
}

/* Style for menu */
.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.menu li {
  margin-left: 20px;
}

.menu li:first-child {
  margin-left: 0;
}

.menu a {
  font-size: 16px;
  text-decoration: none;
  color: #000;
}

a:visited {
  color: black;
}


/* Style for menu toggle */
.menu-toggle {
  display: none;
}

@media only screen and (max-width: 768px) {
  /* Hide menu and show menu toggle on small screens */
  .menu {
    display: none;
  }
  
  .menu-toggle {
    display: block;
    cursor: pointer;
  }
  
  .menu-toggle i {
    font-size: 24px;
    color: #000;
  }
  
  /* Show menu when menu toggle is clicked */
  .menu-toggle.clicked + .menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    z-index: 999;
  }
  
  .menu-toggle.clicked + .menu ul {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  
  .menu-toggle.clicked + .menu li {
    margin: 10px 0;
  }
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.image-link {
  flex: 1 0 45%;
  margin-bottom: 20px;
  text-decoration: none;
  color: inherit;
}

.image {
  position: relative;
  height: 0;
  padding-bottom: 66.67%; /* Set the height of the image container based on a 3:2 aspect ratio */
  overflow: hidden;
}

.image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image:hover img {
  transform: scale(1.2); /* Add a zoom effect on hover */
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.5s ease;
}

.image:hover .overlay {
  visibility: visible;
  opacity: 1;
}

h1 {
  margin-bottom: 20px;
}

h2, p {
  margin: 0;
  padding: 10px;
}

h2 {
  font-size: 1.5rem;
}

p {
  font-size: 1rem;
}

