@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,500;1,600;1,800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  width: 100%;
  padding: 30px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10000;
}

.navbar .logo {
  color: rgb(0, 0, 0);
  font-weight: 700;
  text-decoration: none;
  font-size: 2em;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.navbar ul {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-self: flex-end;
}

.navbar ul li {
  list-style: none;
  margin-left: 20px;
}

.navbar ul li a {
  text-decoration: none;
  padding: 6px 15px;
  color: rgb(0, 0, 0);
  border-radius: 15px;
}

.navbar ul li a:hover {
  background-color: rgb(187, 180, 180);
  color: #110b1a;

  transition: 0.3s ease-in;
}

body,
html {
  height: 100%;
  margin: 0;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 1.8em;
  color: #666;
}

.pimg1,
.pimg2,
.pimg3 {
  position: relative;
  opacity: 0.7;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.pimg1 {
  background-image: url(../Images/img1.jpg);
  min-height: 100%;
}

.pimg2 {
  background-image: url(../Images/img2.jpg);
  min-height: 400px;
}
.pimg3 {
  background-image: url(../Images/img3.jpg);
  min-height: 400px;
}

.section {
  text-align: center;
  padding: 50px 80px;
}

.section-light {
  background-color: #f4f4f4;
  color: #666;
}

.section-dark {
  background-color: #282e34;
  color: #ddd;
}

.ptext {
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  color: #000;
  font-size: 27px;
  letter-spacing: 8px;
  text-transform: uppercase;
}

.ptext .border {
  background-color: azure;
  padding: 20px;
}

.ptext .border.trans {
  background-color: transparent;
}

@media (max-width: 768px) {
  .navbar {
    width: 100%;
    padding: 20px 0px;
    flex-direction: column;
  }
  .navbar.logo {
    align-items: center;
  }
  .navbar ul {
    padding: 10px;
  }
}
