body {
  width: 100%;
  height: 100vh;
  margin: 0px;
  padding: 50px;
  padding-bottom: 30px;
  box-sizing: border-box;
}

.page-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.project-title {
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Poppins";
}

/* carousel style starts */
/* to align carousel at the center of the available space of view port */

.carousel-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* border: 2px solid red; */
}
.carousel-slides-container {
  width: fit-content;
  position: relative;
}

.carousel-slide {
  height: calc(100vh - 289px);
  width: 100%;
  border-radius: 6px;
  object-fit: contain;
}

.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  font-size: 20px;
  color: white;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  transform: translateY(-50%);
}

/* .carousel-slide{
  display: none;
} */

.next-btn {
  right: 16px;
}
.prev-btn {
  left: 16px;
}

.carousel-dots {
  text-align: center;
  margin-top: 20px;
}

.dot {
  height: 15px;
  width: 15px;
  margin: 0px 5px;
  background-color: #bbb;
  border-radius: 50%;
  /* border: 1px solid; */
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.6s ease;
}

.dot:hover {
  background-color: #ce036a;
}

.dot-active {
  background-color: #ce036a;
}

.copyright-text {
  width: 100%;
  text-align: center;
  font-family: "Poppins";
  margin: 20px 0 0 0;
}

/* level 2 started */
.popup {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: auto;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.9);
}

.popup-content{
  margin: auto;
  display: block;
  width: 80%;
  height: 80%;
}

#popup-image{
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
}

.close{
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  body {
    padding: 30px;
    padding-bottom: 20px;
  }
  .page-header {
    flex-direction: column;
  }
  .carousel-slide {
    height: calc(100vh - 319px);
  }
  .project-title {
    font-size: 32px;
  }
  .popup-content{
    width: 90%;
  }
}
