.navbar {
  background-color: #fffaec;
  display: flex;              
  justify-content: space-between;
  align-items: center;
  height: 58px;
  padding: 0px 20px;
}

.navbar a {
  color: #000000;
  text-align: center;
  padding: 12px 30px;
  text-decoration: none;
  font-size: 20px;
  font-family: "Optima";
}

.navbar a:hover {
  background-color: #ddd;
  color: rgb(0, 0, 0);
} 

.navbar a.split {
  order: 2; 
}

.navbar a.active {
  background-color: #c3a68b;
  color:  rgb(0, 0, 0);
}

.navbar .nav-center {
  flex: 1;                   
  text-align: center;          
  font-family: "Optima";
  font-size: 25px;
  color: #000000;          
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

body {
  font-family: "barlow", sans-serif;
  font-weight: 300;
  font-style: normal;
  margin: 0;
  padding: 0;
  max-width: 100%
}

.image-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.image-container img {
  display: block;
  width: 100%;
  height: auto;
  transition: 0.3s ease;
}

.image-container:hover img {
  opacity: 0.7;
}

.image-text-permanent {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: white;
  font-size: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px #000;
  opacity: 1;  
  transition: opacity 0.3s ease;
}

.image-container:hover .image-text-permanent {
  opacity: 0.7;
}

.image-text-hover {
  position: absolute;
  top: 50%;   
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 26px;
  font-weight: bold;
  text-shadow: 2px 2px 4px #000;
  opacity: 0;  
  transition: opacity 0.3s ease;
}

.image-container:hover .image-text-hover {
  opacity: 1;
}

p {
  margin: 20px;
  font-family: "barlow", sans-serif;
  font-weight: 300;
  font-style: normal;
}
