@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

header {
  margin: 40px;
}

header .logo-img {
  height: 50px;
}

.videoClip {
  z-index: -1;
  min-height: 100%;
  min-width: 100%;
  position: fixed;
  top: 0;
}

.box-video {
  position: fixed;
  top: 0;
  z-index: -1;
}

.mascara {
  height: 100%;
  width: 100%;
  background: linear-gradient(
    109deg,
    rgba(10, 12, 16, 0.99) 15%,
    rgba(10, 12, 16, 0.7) 50%,
    rgba(10, 12, 16, 0.99) 85%
  );
  position: fixed;
  top: 0;
}

main section {
  display: inline-block;
  padding-left: 100px;
}

main section .button-section {
  display: block;
  background: transparent;
  border: 2px solid #00d4ff;
  color: #00d4ff;
  padding: 20px 40px;
  border-radius: 50px;
  transition: 0.3s;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
  cursor: pointer;
  margin-bottom: 30px;
}

main .button-section:hover {
  background: rgba(0, 212, 255, 0.1);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
}

main section h1 {
  font-size: 64px;
  font-weight: 800;
  color: rgb(184, 173, 173);
  display: inline-block;
}

main section p {
  margin: 15px 0;
  width: 505px;
  font-weight: 400;
  line-height: 25px;
  font-size: 18px;
  color: rgb(243, 242, 242);
}

main .img-mark {
  display: inline-block;
  transition: transform 0.3s ease-in-out;
  height: auto;
}

main .img-mark:hover {
  transform: translateY(-10px);
}

main section .img-man {
  height: 60px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

main section .img-man:hover {
  opacity: 0.7;
  height: 62px;
}

main section .img-man:active {
  opacity: 0.5;
}

.img-sound {
  margin-left: 10px;
  height: 60px;
  cursor: pointer;
}

.img-sound:hover {
  opacity: 0.7;
}

.containerArmor {
  display: none;
  text-align: center;
  padding: 20px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  background: rgba(0, 20, 40, 0.4);
  border-radius: 15px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 45%;
  left: 5%;
}

.jarvis-select {
  background: #050a10;
  color: #00d4ff;
  border: 1px solid #00d4ff;
  padding: 10px 20px;
  outline: none;
  cursor: pointer;
  margin-bottom: 20px;
  width: 250px;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
  text-transform: uppercase;
}

.jarvis-select option {
  background: #050a10;
  color: #00d4ff;
}

.armor-button {
  background: rgba(0, 212, 255, 0.1);
  border: 2px solid #00d4ff;
  color: #00d4ff;
  padding: 15px 40px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
  display: block;
  margin: 0 auto;
}

.armor-button:hover {
  background: #00d4ff;
  color: #050a10;
  box-shadow: 0 0 25px #00d4ff;
}

@media screen and (max-width: 1260px) {
  main section {
    display: block;
    text-align: center;
    margin: 30px 20px 0 20px;
    padding: 0;
  }

  main section p {
    text-align: center;
    width: 500px;
    margin: 10px auto 0 auto;
  }

  main .img-mark {
    padding: 10px;
    margin: 0 auto;
    display: block;
  }

  .containerArmor {
    width: 300px;
    position: absolute;
    top: 800px;
    left: 10px;
    background: rgba(0, 20, 40, 0.1);
  }

  main section .button-section {
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (max-width: 535px) {
  main section p {
    width: 100%;
  }

  main .img-mark {
    width: 100%;
  }
}
