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

body {
  background-color: black;
}
#sec1 
{
  width: 100vw;
  height: 5.5vh;
  display: flex;
  background-color: black;
  margin: 0.5vw;
}
#h1 {
  font-family: 'Quantico', 'Farsan', 'Fugaz One', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  color: rgb(233, 217, 127);
  margin: 0.5vw;
  padding: 0.2vw;
  position: relative;
  overflow: hidden;
  font-size: 4vh;
}

#h1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  border-left: 5px solid red;
  animation: type 4s steps(20) infinite;

}

@keyframes type 
{

  40%,
  60% {
    left: 100%;
  }

  100% {
    left: 0%;
  }
}
#img1cont
{
  height: 100%;
  width: auto;
}
#img1
{
  height: 100%;
  width: 100%;
  margin-top: 0.5vh;
  animation: rotate 15s linear infinite;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg)
  }
  100%
  {
    transform: rotate(360deg);
  }

  }

  #btn1 {
  margin-right: 2vw;
  padding: 0.2vw;
  color: white;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  margin-left: auto;
  align-self: flex-start;
}
 #sec2 {
  background-color: black;
  display: flex;
  max-width: 100vw;
  box-sizing: border-box; 
 margin-top: 10vh;
 margin-left: 5vw;
 margin-right: 5vw;
  border-radius: 1vh;
  box-shadow: 0 0 3vw 0.5vw rgba(255, 165, 0, 0.6);
  flex-direction: column;
} 
#h2 {
  font-size: 2vh;
  margin: 1vh;
  padding: 0.5vh;
  color: rgb(228, 139, 23);
  font-family: 'Space Mono', 'Fugaz One', 'Farsan', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif
}
#sec2-d1 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1vh;
}
#sec2-t1 {
  padding: 1vh;
   margin: 1vh; 
  font-size: 1.5vh;
  border-radius: 2em; 
   border: 3px solid rgba(228, 139, 23, 0.7);
  outline: none;
}
#sec2-t1:focus {
  border-color: rgb(228, 139, 23);
  box-shadow: 0 0 1vw rgba(228, 139, 23, 0.6);
}
#btn2 {
  padding: 0.8em 1.8em;
  font-size: 1.5vh;
  border-radius: 2em;
  background-color: rgb(228, 139, 23);
  color: black;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
#btn2:hover {
  background-color: rgb(255, 166, 0);
  box-shadow: 0 0 1vw rgba(255, 166, 0, 0.6);
  transform: scale(1.05);
} 


#sec3 {
  background-color: #111;
  color: #f1f1f1;
  padding: 4vw 6vw;
  margin: 2vh;
  border-radius: 1vw;
  box-shadow: 0 0 2vw rgba(255, 140, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 2vw;
  max-width: 100%;
  box-sizing: border-box;
}

#p1 {
  font-size: 2vh; /* Responsive text size using vw */
  line-height: 3vh; /* Scales nicely with font size */
  text-align: justify;
  font-family: 'Space Mono', 'Farsan', 'Gill Sans', sans-serif;
  margin: 0;
  color: #f1f1f1;
}

#img2cont {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2vw;
}

#img2 {
  max-width: 100%;
  height: auto;
  border-radius: 1vw;
  box-shadow: 0 0 1.5vw rgba(255, 165, 0, 0.4);
}
