body {
  background-color: powderblue;
  overflow-x: hidden;
  width: 100%;

}

.h1 {
  color: gray;
  border: 15px solid;
  border-radius: 10px;
  border-color: darkgrey;
  padding: 5px;
  width: 250px;
  /* display: inline-block; */
}

.h2 {
  color: gray;
  border: 15px solid;
  border-radius: 10px;
  border-color: darkgrey;
  padding: 5px;
  width: 250px;
  /* display: inline-block; */
  position: relative;
  left: auto;
}



.btn1 {
  font-size: xx-large;
  background-color: azure;
  color: blue;
  border: 5px solid;
  border-radius: 15px;
  cursor: pointer;
  /* position: relative;
    left: 1500px; */
  animation-name: btn1;
}


:hover.btn1 {
  background-color: black;

}

.div1 {
  border: 15px solid;
  border-radius: 15px;
  padding: 20px;
  position: relative;
  left: 35px;
  backdrop-filter: blur(2px);
}

.nav1 {
  border: 10px double;
  border-color: blue;
  border-radius: 50px;
  padding: 20px;
  width: 1900px;
  text-align: right;
  backdrop-filter: blur(2px);
}

.parent {
  position: fixed;
  width: fit-content;
  color: slategrey;
  display: inline-block;
}

/* nav bar work done */
/* now for first audio button */

.one {
  /* display:grid; */
  border: 20px;
  border-style: groove;
  border-color: rgb(16, 158, 116);
  border-radius: 30px;
  /* border color was azure before */
  /* grid-template-columns: repeat(10,1fr);
    grid-template-rows: repeat(1,1fr); */
  /* height:630px; */
  /* width:480px;
    align-items: center; */
  /* gap:10px; */
  padding: 10px;
  display: inline-block;

}

video {
  width: 70%;
  height: 50%;
  border: 10px solid;
  border-color: rgb(58, 181, 202);
  border-radius: 20px;
}

.audio1 {
  display: inline-block;
  border: 10px solid;
  border-radius: 10px;
  border-color: deepskyblue;
  height: 100%;
  width: 100%;
  font-size: xx-large;
  font-family: cursive;
  padding: 10px;

  /* display:grid;
position: relative;
top: 20px;
 right:30px; */

}

:hover.audio1 {
  background-color: cadetblue;
  transform: scale(1.1);
  transition: 0.5s;

}



.ind2 {
  cursor: pointer;
  /* display: inline-block; */
  display: flex;
  justify-self: center;

  position: relative;
  /* left: 20%; */
  top: 250px;
  font-size: 60px;
  font-family: cursive;
  font-weight: bolder;
  color: wheat;
  background-color: rgb(125, 196, 160);
  border: 20px;
  border-style: ridge;
  border-color: rgb(146, 245, 195);
  /* border color was mint cream */
  border-radius: 20px;
  padding: 30px;
}

:hover.ind2 {
  border-color: black;

}

.note {
  font-size: 15px;
  font-family: cursive;
  font-weight: bolder;
  font-style: italic;

}

/* Working for html3 */

.Qul {
  width: max-content;
  height: max-content;
}

.impoffajr {
  font-size: 50px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.impofsalah {
  color: gray;
  border: 15px solid;
  border-radius: 10px;
  border-color: darkgrey;
  padding: 5px;
  /* width: 500px; */
  /* display: inline-block; */
}



/* chat gpt media query */

/* ===== Global Reset & Base Styles ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

body {
  line-height: 1.6;
}

/* ===== Centered Container ===== */
.main-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
}

/* ===== Responsive Media Queries ===== */

@media (max-width: 479px) {
  .main-container {
    padding: 12px;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .main-container {
    padding: 16px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .main-container {
    padding: 24px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .main-container {
    padding: 32px;
  }
}

@media (min-width: 1200px) {
  .main-container {
    padding: 40px;
  }
}