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

body {
  background-color: black;
}

#sec1 {
  width: 100vw;
  height: 7vw;
  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: 4vw;
}

#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%;
  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;
  margin: 2vw;
  border-radius: 1vw;
  box-shadow: 0 0 3vw 0.5vw rgba(255, 165, 0, 0.6);
}

#h2 {
  font-size: 2vw;
  margin: 1vw;
  padding: 0.5vw;
  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: 1vw;
}

#sec2-t1 {
  padding: 1vw;
  margin: 1vw;
  font-size: 1rem;
  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.1em;
  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: 2vw;
  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: 1vw;
  line-height: 1.5vw;
  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);
}

#sec4 {
  background-color: #111;
  color: #f1f1f1;
  padding: 4vw 6vw;
  margin: 2vw;
  border-radius: 1vw;
  box-shadow: 0 0 2vw rgba(255, 140, 0, 0.5);
  font-family: 'Space Mono', 'Farsan', 'Quantico', sans-serif;
  overflow-x: auto;
}

#sec4 h3 {
  font-size: 2vw;
  color: rgb(228, 139, 23);
  margin-bottom: 2vw;
  text-align: center;
  font-family: 'Quantico','Fugaz One', 'Quantico', sans-serif;
}

#sec4 table {
  width: 100%;
  border-collapse: collapse;
  background-color: #1a1a1a;
  color: #f1f1f1;
  box-shadow: 0 0 1.5vw rgba(255, 165, 0, 0.3);
  border-radius: 1vw;
  overflow: hidden;
}

#sec4 th,
#sec4 td {
  padding: 1.2vw;
  text-align: left;
  font-size: 1vw;
  border-bottom: 1px solid rgba(255, 165, 0, 0.2);
}

#sec4 th {
  background-color: rgb(228, 139, 23);
  color: black;
  font-family: 'Quantico', sans-serif;
}

#sec4 tr:nth-child(even) {
  background-color: #222;
}

#sec4 i.wi {
  font-size: 1.5vw;
  color: orange;
  vertical-align: middle;
}
