body {
  background-color: #5475C7;
  position: relative;
  margin-top: 80px;
  font-family: 'Poppins', sans-serif;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  text-align: left;
  padding: 10px 0;
  z-index: 3;
  display: flex;
  align-items: center;
}

nav a {
  color: #FBE0F1;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
  transition: transform 0.3s ease, color 0.3s ease;
}

nav a:hover {
  transform: scale(1.2);
  color: #FFD700;
}

.home-btn {
  color: #FBE0F1;
  margin-right: 15px;
  text-decoration: none;
  font-weight: 500;
  padding: 10px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background-color: rgba(19, 29, 104, 0.5);
  color: #FBE0F1;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  padding: 10px;
  border: none;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgba(47, 74, 149, 0.9);
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: #FBE0F1;
  padding: 10px;
  text-decoration: none;
  display: block;
  font-family: 'Poppins', sans-serif;
}

.dropdown-content a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.dropdown:hover .dropdown-content {
  display: block;
}

h1 {
  color: #FBE0F1;
  font-size: 27.6px;
  position: fixed; 
  top: 4%;
  left: 86%; 
  margin: 0; 
  text-align: right;
  z-index: 2; 
}

h2 {
  color: #FBE0F1;
  font-size: 76px;
  position: fixed;
  top: 6.5%;
  left: 86%; 
  margin: 0; 
  text-align: right;
  z-index: 2; 
}

h3 {
  color: #FBE0F1;
  font-size: 87px;
  position: fixed;
  top: 5%; 
  left: 1.5%; 
  margin: 0; 
  text-align: left;
  z-index: 2; */
}

p {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #FBE0F1;
  margin-left: 22px;
  text-align: center;
}

.image-container {
  position: relative;
  display: inline-block;
  width: 300px;
  height: 500px;
  cursor: pointer;
}

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

#overlay-image {
  opacity: 0;
  z-index: 1;
}

.active #overlay-image {
  opacity: 1;
}

.active #original-image {
  opacity: 0.5;
}

#overlay-image.custom-size {
  width: 95%;
  height: auto;
  object-fit: contain;
  top: 30%;
  left: 1%;
}

.image-container:hover #original-image {
  transform: scale(1.1);
}

.image-container:hover #overlay-image {
  transform: scale(1);
}

.description-box {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: rgba(11, 37, 81, 0.8);
  color: #FBE0F1;
  padding: 10px;
  border-radius: 5px;
  width: 200px;
  height: 200px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 2;
  overflow-y: auto;
}

.image-container.active .description-box {
  opacity: 1;
  transform: translateY(0);
}

.custom-box {
  width: 200px;
  top: 30px;
  left: 80%;
  transform: translateX(-50%);
}

.description-box::-webkit-scrollbar {
  width: 8px;
}

.description-box::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}

.description-box::-webkit-scrollbar-thumb {
  background: rgba(164, 187, 255, 0.5);
  border-radius: 4px;
}

.description-box::-webkit-scrollbar-thumb:hover {
  background: rgba(164, 187, 255, 0.7);
}