  html,
  body {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      user-select: none;
      font-family: 'Montserrat', sans-serif;


  }

  body {
      background: linear-gradient(to right, red, orange);
  }

  @media (min-width: 1024px) {

      .navbar input {
          opacity: 0;
          user-select: none;
      }

      .heading {
          background: linear-gradient(to right, red, orange);
          padding: 1px 10px 10px 0px;
          height: 90px;
          font-family: "Montserrat", sans-serif;
      }

      .heading a {
          text-decoration: none;
          color: black;
      }

      .head-logo img {
          height: 90px;
          width: auto;
          margin: 10px 0 10px 20px;
          flex-direction: column;
      }

      .head-p {
          display: block;
          margin: -100px 130px 0;
          line-height: 10px;
          color: white;
          font-size: 23px
      }

      .head-head {
          display: flex;
          gap: 30px;
          margin: -80px 0;
          justify-content: right;
      }

      .head-head h1 {
          font-size: 20px;
          padding: 5px 10px 0 0;
          display: inline-block;
          position: relative;
          background: linear-gradient(90deg, #ffffff 0%, rgba(255, 0, 0, 0.4) 100%);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-size: 200% auto;
          transition: all 1s ease-in-out;
      }

      /* Línea inferior */
      .head-head h1::after {
          content: "";
          position: absolute;
          left: 0;
          bottom: -4px;
          width: 0%;
          height: 2px;
          background: #ff3737;
          transition: width 0.2s ease-in-out;
      }

      /* Efectos al pasar el mouse */
      .head-head h1:hover {
          transform: scale(1.1);
          background-position: right center;
          cursor: pointer;
      }

      .head-head h1:hover::after {
          width: 100%;
      }

      .integrantes {
          margin: 140px 0px;
      }

      .int1 {
          background-color: rgb(255, 255, 255);
          opacity: 0.9;
          margin: 10px;
          border-radius: 25px;
      }

      .int2 {
          background-color: rgb(255, 255, 255);
          opacity: 0.9;
          margin: 10px;
          border-radius: 25px;
      }

      .integrantes h1 {
          margin: 20px 0;
          padding: 20px 0 20px 0;
          text-align: center;
          font-size: 40px;
          line-height: 5px;
          color: white;
          filter: drop-shadow(21px 4px 6px black);
      }

      .integrantes-1 img {
          height: 125px;
          width: auto;
          display: flex;
          margin: 40px;
      }

      .integrantes-1 img:hover {
          transform: scale(1.1);
          transition: all 0.3s ease-in-out;
      }

      .integrantes-1 p {
          font-size: auto;
          margin: 0.5;
          padding: 0;
          justify-content: center;
          text-align: center;
      }

      .integrantes-1 {
          display: flex;
          gap: 10px;
          justify-content: center;
      }

      .footer {
          display: flex;
          align-items: center;
          justify-content: center;
          background-color: #333;
          color: white;
          margin: 0;
      }

      .ft-secc a {
          margin: 20px;
          text-align: left;
          font-family: 'Montserrat', sans-serif;
          color: white;
      }

      .ft-secc a:hover {
          text-decoration: underline;
          cursor: pointer;
      }

      .ft-datos img {
          width: 120px;
          height: auto;
          justify-content: left;
      }

      .ft-datos {
          display: flex;
          align-items: center;
          margin: 40px;
      }

      .ft-textos {
          position: relative;
          flex-direction: row;
          margin: 20px;
          line-height: 5px;
          font-size: 17px;
      }

      .ft-logos img {
          height: 40px;
          width: auto;
          margin: 10px;
          filter: drop-shadow(0px 4px 10px rgb(255, 255, 255));

      }

      .ft-logos img:hover {
          transform: scale(1.1);
          cursor: pointer;
          transition: all 0.3s ease-in-out;
          filter: drop-shadow(2px 4px 10px rgb(255, 42, 42));

      }

      #dev {
          color: white;
          background-color: #333;
          margin: 0;
          text-align: center;
          padding: 10px;
      }

      #dev a {
          text-decoration: underline;
          color: white;
      }
  }

  @media (max-width: 1023px) {

      .heading {
          background: linear-gradient(to right, red, orange);
          font-family: "Montserrat", sans-serif;
          width: 100%;
          display: flex;
          min-height: 100px;
          align-items: center;
          justify-content: space-between;
          position: static;
          z-index: 30;
      }

      .head-logo img {
          width: 50px;
          height: auto;
      }

      .head-p a {
          text-decoration: none;
          color: black;
          line-height: 5px;
      }

      .navbar {
          display: flex;
          justify-content: flex-end;
          align-items: center;
          width: auto;
          height: 60px;
          background-color: transparent;
          position: relative;
          padding: 0 20px;
      }

      #menu-toggle {
          display: none;
      }

      .menu-icon {
          display: flex;
          flex-direction: column;
          justify-content: space-around;
          width: 30px;
          height: 25px;
          cursor: pointer;
          z-index: 20;
      }

      .menu-icon .bar {
          display: block;
          width: 100%;
          height: 3px;
          background-color: white;
          border-radius: 5px;
          transition: all 0.3s ease-in-out;
      }

      .head-head {
          position: absolute;
          top: 100%;
          right: 0;
          left: auto;
          width: 200px;
          background-color: transparent;
          flex-direction: column;
          align-items: center;
          max-height: 0;
          overflow: hidden;
          transition: max-height 0.4s ease-in-out, background-color 0.4s ease-in-out;
          z-index: 10;
          padding: 0;
      }

      .head-head h1 {
          padding: 15px;
          margin: 0;
          width: 100%;
          text-align: left;
          background-color: transparent;
          color: white;
          font-size: 1.2em;
          border-bottom: 1px solid #555;
          transition: background-color 0.3s ease;
      }

      .head-head h1:last-child {
          border-bottom: none;
      }

      #menu-toggle:checked~.head-head {
          max-height: 500px;
          background-color: gray;
          overflow-y: auto;
      }

      #menu-toggle:checked~.menu-icon .bar:nth-child(1) {
          transform: translateY(11px) rotate(45deg);
      }

      #menu-toggle:checked~.menu-icon .bar:nth-child(2) {
          opacity: 0;
      }

      #menu-toggle:checked~.menu-icon .bar:nth-child(3) {
          transform: translateY(-11px) rotate(-45deg);
      }

      .int1 {
          background-color: rgb(255, 255, 255);
          opacity: 0.9;
          margin: 10px;
          border-radius: 25px;
          height: auto;
      }

      .integrantes h1 {
          margin: 10px 0;
          text-align: center;
          font-size: 25px;
          line-height: 0.9;
          color: white;
          filter: drop-shadow(21px 4px 6px black);
      }

      .integrantes-1 img {
          height: 200px;
          text-align: center;
          justify-content: center;
          align-items: center;
          margin: auto;
          padding: 20px;
      }
      .int1 img {
            align-items: center;
            justify-content: center;
            text-align: center;
      }

      .int1 p {
          line-height: 0.5px;
          font-size: 20px;
          text-align: center;
      }

      .int1 #rank {
          font-size: 25px;
      }

      .int1 #nombre {
          padding: 20px 10px 20px 10px;
      }

      .footer {
          background-color: rgb(66, 66, 66);
          flex-direction: column;
          text-align: center;
          padding: 20px 0;
      }

      .footer img {
          width: 50px;
          height: auto;
      }

      .footer .ft-secc a {
          text-decoration: underline;
      }

      #dev {
          background-color: rgb(66, 66, 66);
          text-align: center;
          margin: 0;

      }

      #dev a {
          text-decoration: none;
          color: black;
      }
  }