@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gothamotf.otf') format('truetype');
  /* Otros formatos de archivo de fuente */
  /* src: url('ruta/a/gotham.woff') format('woff'),
         url('ruta/a/gotham.woff2') format('woff2'); */
}

.h2 {
  padding-top: 50px;
  font-family: 'Gotham', sans-serif;
}


body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;

}

.background-image {
  background-image: url(../img/CARATULA.webp);
  background-repeat: no-repeat;
  background-size: 100vw 100vh;
  background-position: center;
  background-attachment: fixed;
  object-fit: cover;


}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  position: inherit;

}

.header {
  text-align: center;
  padding: 20px;
}

.main {
  margin-left: 5%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  flex-direction: row;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
}

.feature {
  flex: 0 0 0;
  margin-bottom: 5px;
  padding: 5px;
  border-radius: 5px;
  margin-top: 5px;
}

.logo {
  max-width: 180px;
  margin-bottom: 10px;
  padding: 0%;
  margin: 5px 5px;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 80px;
  /* Altura del footer */
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;

}

@media(max-width: 1000px) {


  .background-image {

    background-color: lightblue;
    background-image: url(../img/fondo-responsive.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;


  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;

  }

  .header {
    text-align: center;
    padding: 20px;
  }

  .main {

    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    flex-direction: row;

  }

  .feature {
    flex: 0 0 0;
    margin-bottom: 5px;
    padding: 5px;
    border-radius: 5px;
    margin-top: 5px;
  }

  .logo {
    max-width: 180px;
    margin-bottom: 10px;
    padding: 0%;
  }




}

@media(max-width: 400px) {


  .background-image {

    background-color: lightblue;
    background-image: url(../img/fondo-responsive.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;


  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;

  }

  .header {
    text-align: center;
    padding: 20px;
  }

  .main {

    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    flex-direction: row;

  }

  .feature {
    flex: 0 0 0;
    margin-bottom: 5px;
    padding: 5px;
    border-radius: 5px;
    margin-top: 5px;
  }

  .logo {
    max-width: 150px;
    margin-bottom: 10px;
    padding: 0%;
  }
}