@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: #111;
  padding-bottom: 300px;
  overflow-x: hidden;
  margin-top: 20px;
  max-height: 300vh;
  /* font-family: "Poppins", sans-serif; */
}
/* navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.6s;
  padding: 40px 100px;
  z-index: 10000;
  background-color: #111;
}
.sticky {
  padding: 5px 100px;
  background: linear-gradient(45deg, #e612c6, #07ffff);
}
header .Logo {
  position: relative;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  font-size: 2em;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: 0.6s;
}
header ul {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
header ul li {
  position: relative;
  list-style: none;
}
header ul li a {
  position: relative;
  margin: 0 15px;
  text-decoration: none;
  color: #fff;
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 1.3em;
  transition: 0.6s;
}
.sticky .Logo {
  color: #111;
}
.sticky ul li a {
  color: #111;
}
/* for background content */
body:before {
  content: "ZoOzZeRr";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16em;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px #e612c6;
}

/* for section positioning */
section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* for section 's description */
section h2 {
  margin: 30px;
  margin-left: 200px;
  font-size: 4em;
  color: transparent;
  margin-bottom: 20px;
  /* my */
  text-transform: uppercase;
  background: linear-gradient(
    to bottom,
    #222 0%,
    #222 50%,
    #111 50%,
    #111 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
}
h2:before {
  content: attr(data-text);
  position: absolute;
  top: 4px;
  left: 4px;
  z-index: -1;
  background: linear-gradient(45deg, #e612c6, #07ffff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
h2:after {
  content: attr(data-text);
  position: absolute;
  top: 30px;
  left: 20px;
  z-index: -2;
  background: linear-gradient(45deg, #e612c6, #07ffff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  filter: blur(20px);
}
/* for positioning the boxes */
section .container {
  position: relative;
  width: 1000px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* for selecting even child so that even odd becomes opposite */
section:nth-child(even) .container {
  flex-direction: row-reverse;
}

/* for section  image box */
section .container .imgBx {
  position: relative;
  width: 800px;
  height: 400px;
  overflow: hidden;
  box-shadow: 0 25px 35px rgba(0, 0, 0, 0.1);
}
/* for section  image box 's image */

section .container .imgBx img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* for content in section */
section .container .content {
  position: absolute;
  right: 0;
  margin-top: 200px;
  margin-bottom: 40px;
  padding: 40px;
  background: #333;
  z-index: 1;
  max-width: 400px;
  color: #fff;
  box-shadow: 0 25px 35px rgba(0, 0, 0, 0.1);
  border-bottom: 6px solid #e612c6;
}

section:nth-child(even) .container .content {
  left: 0;
}
/* scroll-barr */
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(transparent, #e612c6);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(transparent, #07ffff);
  border-radius: 6px;
}
/* footer */
footer {
  background: black;
  margin-top: 300px;
  height: 100vh;
  position: relative;
  bottom: 0;
  text-align: center;
  justify-content: center;
}
footer p {
  color: rgb(197, 62, 62);
  font-size: 2.3em;
  font-family: "Quicksand", sans-serif;
  margin-top: 20px;
}
footer h2 {
  color: #fff;
  font-weight: 100;
  font-size: 2.3em;
  margin-top: 20px;
  text-decoration: none;
}

/* media queries for responsiveness */
