*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: poppins;
    overflow-x:hidden;
}
.contenedor-total{
    width: 100%;
    height: 100vh;
     
    padding: 2.5vh 2.5vw;
    position: relative;
    background: rgb(8, 8, 8);
}
.contenedor{
    width: 95vw;
    height: 95vh;
    position: relative;
    background: rgb(17, 17, 17);
    /*background:linear-gradient(rgba(0, 0, 0, 0.863), rgba(0, 0, 0, 0.842)),  url("https://images.pexels.com/photos/2769274/pexels-photo-2769274.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940");
    */
    box-shadow: 5px 5px 10px 5px black;
}
/*****************************************HEADER****************************/
header{
    position: relative;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
  
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    padding: 16px 100px;
    background: rgb(14, 14, 14);
    box-shadow: 0px 2px 5px 1px black;
  }
  header h2{
      text-transform: uppercase;
  }
  header nav{
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
  }
  header nav li{
      margin: 0 15px;
  }
  header nav li:first-child{
      margin-left: 0;
  }
  header nav li:first-child{
      margin-right: 0;
  }
 
  @media (max-width:700px) {
      header{
          flex-direction: column;
          transition: all 0.5s ease-in-out;
      }
      header h2{
          margin-bottom: 15px;
          transition: all 0.5s ease-in-out;
  
      }
      header nav li{
          margin: 0 7px;
      }
  }
  ul,nav{
    list-style: none;
  }
  a{
    text-decoration: none;
    cursor: pointer;
    color: inherit;
    transition: all 0.5s ease-in-out;
  }
  a:hover{
   color: rgb(196, 185, 44);
  }
/****************INFORMACION****************/

.info{
    width: 100%;
    position: relative;
    display: inline-block;
    float: left;
    padding: 10px 0 0 0;
    text-align: center;
 }
.info h1{
    text-align: center;
    color: white;
    font-size: 50px;
    letter-spacing: 8px;
 }
.info p{
    color:antiquewhite;
    letter-spacing: 2px;
}
/****************FORMULARIO****************/
.form{
    width: 100%;
    height: 300px;
    position: relative;
    display: inline-block;
    text-align: center;
    padding: 50px  0 0 0; 
 }

.email{
     
    width: 550px;
    padding: 10px 0px 10px 10px;
    color: black;
    border-style: none;
    background: grey;
    margin: 0 0 20px 0;
}
.mensaje{
 
    min-width: 550px;
    min-height: 100px;
    padding: 10px 10px 10px 10px;
     border-style: none;
    background: rgba(0, 0, 0, 0.527);
    margin: 0 0 20px 0;
    max-height: 105px;
    max-width: 550px;

    font-size: 14px;

    color: white;
}

@media (max-width:650px) {
    .info h1{
        font-size: 30px;
        letter-spacing: 1px;
     }
    .email{
         width: 80%;

    }
    .mensaje{
        min-width: 80%;
    }
}
.send{
    width: 100px;
     padding: 10px ;
    color: rgb(44, 44, 44);
    font-weight: 600;
    border-style: none;
     cursor: pointer;
     transition: all 0.3s ease-in-out;
     background: rgba(190, 180, 31, 0.637);
}
 

.send{
    position: relative;
 
     text-decoration: none;
 
    transition: all 0.5s ease-in-out;
    list-style: none;
    text-align: center;
  }
  .send:hover{
  transform: scale(1.05);
  box-shadow: 5px 5px 1px 1px rgba(0, 0, 0, 0.856);
   text-decoration: none;
   background: rgba(245, 230, 16, 0.637);

  }
  















.form p a:hover{
    color: rgb(255, 238, 0);
    transform: scale(1.04);
 }
/****************REDES DE LA PAGINA****************/


.redesSocialesPagina{
    position: relative;
    width: 100%;
    padding-left: calc(50% - 110px);
     filter: invert(2) sepia(01) hue-rotate(1deg) saturate(100%);
  
  }
  .redesLogos-pagina a img{
    position: relative;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    float: left;
    
    margin: 10px 10px 0px 10px;
  }
  
  .redesLogos-pagina a img{
    box-shadow: none;
  }
  .redesLogos-pagina a svg{
    position: relative;
    width: 40px;
    height: 40px;
    display: inline-block;
    float: left;
    margin: 10px 10px 0px 10px;
  
    transition: all 0.5s ease-in-out;
  }
  .redesLogos-pagina a svg:hover{
    transform: scale(1.1);
     transform: rotate(180deg);
     
  }
   
  .redesLogos-pagina a img:hover{
      transform: translateY(-5px);
  }
  