* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.wrapper {
  width: 1170px;
  margin: auto;
}

header {
  background: url(2jpg);
  height: 90vh;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center center;
  position: relative;
}

.menu {
  float: right;
  list-style: none;
  margin-top: 20px;
}

.menu li {
  display: inline-block;
}

.menu li a {
  color: #0c0c0c;
  text-decoration: none;
  padding: 5px 20px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
}

.menu li a:hover {
  background: #0c0c0c;
  color: #fff;
}

.gallery-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 90vh;
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Add the gallery-scroll class to enable smooth scrolling */
.gallery-scroll #galleryImage {
  max-width: 100%;
  margin-right: 2%;
  height: auto;
  transition: transform 5s ease-in-out;
  box-shadow: -5px 10px 30px -5px rgba(0, 0, 0, 0.75);
  animation: foldAnimation 6s infinite alternate-reverse;
}
@keyframes foldAnimation {
  0% {
    transform: perspective(400px) rotateY(-1deg);
  }
  100% {
    transform: perspective(800px) rotateY(-1deg);
  }
}

.gallery-buttons {
  margin-top: 20px;
  display: flex;
  align-items: center;
}

.gallery-buttons button {
  padding: 10px 20px;
  font-size: 16px;
  margin: 0 10px;
  cursor: pointer;
  background-color: #0c0c0c;
  color: #fff;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease-in-out;
}
.gallery-buttons button:hover {
  background-color: #fff;
  color: #0c0c0c;
}

.banner-text,
.banner-text-contact {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.banner-text img {
  padding-bottom: 0px;
  max-width: 100%;
  height: auto;
}

.banner-text p {
  font-family: "Ubuntu", Arial, sans-serif;
  font-size: 25px;
  line-height: 1.2;
  color: #0c0c0c;
  margin-bottom: 0px;
  margin-top: 0px;
}

.banner-text h1 span {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px #0c0c0c;
}

.banner-text a {
  border: 2px solid #0c0c0c;
  padding: 10px 25px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  margin-top: 20px;
  display: inline-block;
  color: #0c0c0c;
}

.banner-text a:hover {
  background: #0c0c0c;
  color: #fff;
}

/* Responsive styles go here */

@media (max-width: 991px) {
  header {
    background-position: 60%;
    padding-bottom: 0px;
    padding-top: 0rem;
  }
  .wrapper {
    width: 100%;
    font-family: "Courier New", Courier, monospace;
  }
  .logo {
    float: none;
    width: 50%;
    text-align: center;
    margin: 0 auto 10px;
  }
  .menu {
    float: none;
    margin-top: 100px;
  }
  .menu li a {
    padding: 10px 10px;
    font-size: 25px;
  }
  .menu {
    text-align: center;
  }
  .banner-text,
  .banner-text-contact {
    width: 100%;
    height: auto;
    position: absolute;
    top: 190px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
  .banner-text img {
    margin-top: 0px;
  }
  .banner-text h1 {
    font-size: 60px;
  }
}

@media (max-width: 767px) {
  .wrapper {
    width: 100%;
  }
  .logo {
    float: none;
    width: 50%;
    text-align: center;
    margin: auto;
  }
  .menu {
    float: none;
    margin-top: 0;
  }
  .menu li a {
    padding: 8px;
    font-size: 18px;
  }
  .menu {
    text-align: center;
  }
  .banner-text {
    width: 100%;
    height: auto;
  }
  .banner-text h1 {
    font-size: 30px;
  }

  .scrolling-strip {
    background-image: radial-gradient(
      circle at right,
      #01070e,
      #1a0808,
      #000000
    );
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
      Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
      sans-serif;
    font-weight: 300px;
    color: white;
    font-size: 200px;
    justify-content: center;
    position: fixed;
    bottom: 0%;
    left: 0%;
    width: 100%;
  }
}
