@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

body,
html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom, #FFDAF3, #DAEBFF);
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.navbar a {
  color: #594C53;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 700;
  transition: color 0.3s;
}

.navbar a:hover {
  color: rgb(204, 23, 141);
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 5rem;
  padding: 2rem;
}

.box {
  width: 80%;
  height: 80vh;
  margin: 1rem 0;
  border-radius: 4%;
  object-fit: contain;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.box a {
  display: block;
  height: 100%;
  width: 100%;
}


.box:hover {
  transform: scale(1.05);
}

.box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}



h1 {
  font-size: 4rem;
  position: absolute;
  z-index: 10;
  top: 0rem;
  left: 12rem;
  color: #37B2E6;
}

.fin {
  height: 130vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.fin-wrapper {
  font-weight: 800;
  font-size: 1.2rem;
  text-align: center;
  color: #594C53;
  width: 40%;
  height: 55%;
  padding: 0;
  margin-bottom: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  bottom: 10%;
  overflow: visible;
}



.p1, .p2, .p3 {
  position: absolute; /* Ensure elements can be moved */
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: visible;
}

.p1 {
  left: 10%;
  bottom: -30%;
  left:-85%;
  width: 140%;

}

.p2 {
  left: 30%;
  width:40%;
  bottom:-75%;
}

.p3 {
  left: 10%;
  bottom: -35%;
  left:60%;
  width: 110%;
}


::-webkit-scrollbar {
  width: 15px;
}

::-webkit-scrollbar-track {
  background-color: #fefff0;

}

::-webkit-scrollbar-thumb {
  background: #594C53;
  border-radius: 8px;
}