@charset "utf-8";

@font-face{ 
	font-family: 'roboto';
	src: url('roboto-regular-webfont.woff');
	
}
/* reset de estilo*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*fin reset*/

html {
    font-size: 14px;
    font-family: roboto;
    background-color:#333434;
    background-image: url(img/fondohd.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;
    
}



a {text-decoration: none; color:grey;}
::placeholder {text-align: center;}

#logo {

    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
    
}

#logo_hamburguesa {
    display: block;
 
    
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

header nav ul li a {
    text-decoration: none;
    color: white;
    background-color: #575757;
    text-align: center;
    display: block;
    font-family: roboto;
    padding: .25em;
    border: 6px;
    margin-top: .15em;
    
    
}

header nav ul li a:hover {
    color:white;
    background-color: #ff3100;
    font-weight: bold;
}

p {
    color:white;
}

.pagina {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    margin: auto;
}

h1 {
    color:white;
    font-weight: bolder;
    font-size: 20px;
        
    
        
    
}
h2 {
    color:#ff3100;
    font-weight: lighter;
    font-size: 16px
}
h3 {
    color:skyblue;
}

.nombres {
    color: aliceblue;
}

footer {
    font-size: 12px;
    color: aliceblue;
    max-width: inherit;
    border-style: none;
    background-color:rgb(33, 33, 33);
    padding: .3em;
    text-align: center;
    font-style: italic
}
.boton {
    background-color:#b7b7b7;
    border-radius: 40px;
    width: 150px;
    font-family: roboto;
    color: #333434;
    padding: 5px;
    text-align: center;
    font-size: 1rem;
    margin-top: 2rem;
    margin-left: auto;
    margin-right: auto;
    


}
.boton a {
    text-decoration: none;
    color: #333434;
}
#sesiong{
    border-top: 1px;
    border-top-color:#b7b7b7;
    padding-top: 10px;
    width: 150px;
    font-family: roboto;
    color:#b7b7b7;
    font-size: 8pt;
    border-top-style: solid;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
}

#sesiong a {
    text-decoration: none;
    color: #b7b7b7;
}
#sesiong a:hover {
    text-decoration: none;
    color: #ff3100;
}

.centrar {
    line-height: 1;
    text-align: center;
    display: block;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}
.boton:hover{
    background-color: #ff3100;
}

h6 {
    color:#ff3100;
    font-weight: lighter;
    font-size: 20px
}

h7 {
    color:white;
    margin-top: -35px;
    
}

.contacto{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin:auto;
    border: 0px;
    border-radius: 6px;
    padding: 45px 45px 20px;
    margin-top: 50px;
    background-color: #b7b7b7;
}

.contacto label{
    display: block; 
    font-weight: bold;
    color: white;
    font-size: 9pt;
}
.contacto div{
    margin-bottom: 15px; 
}

.contacto input[type='text']:focus, .contacto textarea:focus{
    outline: none; /* reset especifico para Chrome/Safari */
    background-color: #b7b7b7;
}

.gris {
    background-color: #b7b7b7;
    border-radius: 40px;
    border: 0px;
    display: block;
    padding: 0.5em;
}

.etiqueta {
    display: block;
    text-align: center;
    margin: 5px;
}

/*ACA EMPIEZA MENU HAMBURGUESA*/

.nav {
  position:absolute;
  width:200px;
  height:100vh;
  top:0;
  left:-220px; /*Ocultamos el menú en la parte izquierda para que no se vea a menos que pulsemos sobre la hamburguesa*/
  padding-top:47px;
  background-color: rgba(29, 33, 32, 1);
  border-right:4px solid #ff3100; /*ESTE ES EL VERDE*/
  transition:all .5s ease; /*Damos a la caja del menú una transición para que tenga un desplazamiento suave*/
}
   /*Estilos de los li del menú*/
   .nav__item {
     display:block;
     width:96%;
     margin:0 auto;
     line-height:2;
     position:relative; /*Le damos una posición relativa para posteriormente añadirle el triangulo que indica que se está en la página actual del menú*/
     border-bottom:.5px solid rgba(59, 62, 61, 1);
     border-top:.5px solid rgba(59, 62, 61, 1);
     background-color:transparent;
     font-family: 'Roboto', sans-serif;
     text-align:left;
     color:white;
       text-decoration: none;
   }
       /*Damos colocamos el triangulo negro a la pestaña del menú dónde nos encontramos actualmente*/
       .current:before {
          content:"";
          width:0;
          height:0;
          position:absolute; /*Le damos al before una posición absoluta relativa al li que lo contiene*/
          border-top:17px solid transparent;
          border-left:15px solid #1D2120;
          border-bottom:17px solid transparent;
          top:0px;
          right:-15px; /*Lo posicionamos -15px a la derecha de su contenedor*/
          z-index:4; /*le otorgamos un z-index alto para que se posicione arriba de otros elementeos*/
       }
      /*Colocamos el borde verde al triangulo por medio de otro trangulo verde*/
      .current:after {
          content:"";
          width:0;
          height:0;
          position:absolute;/*Le damos al after una posición absoluta relativa al li que lo contiene*/
          border-top:16.5px solid transparent;
          border-left:17px solid #ff3100;
          border-bottom:17px solid transparent;
          top:.5px;
          right:-21px;
          z-index:1;  /*le otorgamos un z-index bajo para que se posicione debajo del trinagulo negro*/
      }
  /*Estos son los estilos de la hamburguesa del menú que abre y cierra el mismo*/
  .hamburguesa {
    position:absolute; /*Lo posicionamos absolutamente para poder darle una posición y poder moverlo según el menú esté abierto o cerrado*/
    width: 35px;
    line-height:1.1;
    text-align:center;
    top:6.5px; /*Le damos una posición top y left en donde queramos que se encuentre la hamburguesa del menú*/
    left: 8px; 
    border-radius:3px;
    background-color: #142b25;
    transition: all .5s ease; /*Añadimos una transición para que realice un desplazamineto suave*/
    z-index:10;
  }
    /*Añadimos la haburguesa y le damos unos estilos*/
    .hamburguesa::before {
      content:"☰";
      font-size:32px;
      color:white;
    }

  /*Estos son los estilos que le dan la funcionalidad al menú*/
    /*El checkbox según esté activado o no hará que el menú aparezca o desaparezca*/
    .checkbox {
      display:none; /*Ocultamos el checkbox pues no nos interesa que se vea*/
    }
    .checkbox:checked ~ .nav {
      left:0px; /*Le quitamos el left negativo para que el menú vuelva a su posición original*/
      position:fixed; /* Fijamos el menú lateral para que se desplace cuando hagamos scroll*/
    }
    .checkbox:checked ~ .main-w {
      margin-left:200px; /*Cuando el checkbox asigna un margen al contenedor principal para que se desplace junto con el menú*/
    }
    .checkbox:checked ~ .hamburguesa { 
      left:208px;
      position:fixed; /*Fijamos la hamburgues para que se desplace junto con el menú*/
    }


/*ACA TERMINA MENU HAMBURGUESA*/

/*.feed {
    display:flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
}
*/ 
.perfilcontenedor {
    display: flex;
    justify-content: flex-start;
    background-color: aliceblue;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    
}

.perfilfoto{
    width: 40%;
    padding-top: 3em;
    padding-left: 3em;
    padding-bottom: 1em;
    padding-right: 1em;
}
.mifoto {
    display:block;
    max-width: 100%;
    border-radius: 180px;
    border-image-width: 1em;
    margin-left: 1em;
   
}

.perfilseguidores {
    padding-top: 1em;
    margin-left: 2em;
    
}

.username {
    font-family: 'roboto slab', serif;
    font-size: 2.5em;
    color: #ff3100;
    
    
}
.aboutme {
    max-width: 50%;
    padding-top: 1em;
    padding-bottom: 2em;
    color: dimgrey;
    font-family: roboto, sans-serif;
    font-size: 1em;
    font-style: italic;
    
}

@media only screen and (max-width: 600px) {
    
    body {margin:0;}
    
    .perfilcontenedor {
        display:block;
        width:100%;
        padding-bottom: 2em;
    }
    .perfilfoto{ 
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 80%;
        padding: 0.5em;
    }
    .perfilseguidores {
        text-align: center;
        font-family: 'roboto slab', serif;
        font-size: 0.9em;
    padding-top: 1em;
    margin: 1em;
    
}
    .mifoto{
        margin:0;
        padding-top: 1em;
    }
    .aboutme {display:none;}
    
    

.username {
    font-family: 'roboto slab', serif;
    font-weight: bold;
    font-size: 1.3em;
    color: #ff3100;
    margin:0;
    
    
}
    }

#navbar {
  overflow: hidden;
  background-color: #ff3100;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 2.5em;
  display: block;
  text-align: center;
}

.iconito {
    max-height: 1.5em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
   margin-left: 1em;
    margin-right: 1em;
    max-width: 1.5em;  
    
}

/*galeria*/
.container {
  max-width: 80%;
    height: 100%;
  margin: auto;
    background-color: rgba(240, 248, 255, 0.2);
}
.gallery {
  margin: 10px;
  list-style-type: none;
  padding: 0;
  font-size: 0;
}
.gallery li {
  font-size: 13px;
  display: inline-block;
  position: relative;
  width: 25%;
  padding-bottom: 25%;
}

.gallery a {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 10px;
  bottom: 10px;
  overflow: hidden;
}

.gallery a img {
  width: 100%;
}

.gallery a span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin-bottom: -50px;
  background: #000;
  background: rgba(0, 0, 0, 0.5);
  color: #FFF;
  padding: 10px;
  text-align: center;
  transition: all 0.3s ease-out;
}

html.no-touch .gallery a:hover span,
html.touch .gallery a.touchFocus span {
  margin-bottom: 0;
}

.descripcion {
  position: relative;
  display: inline-block;
}

.imagen {
  position: relative;
  z-index: 1;
}

.descripcion-texto {
    opacity: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 10px;
    transition: opacity 0.4s ease-in-out; 
}



.imagen:hovere div.descripcion-texto {
  opacity: 1;
}





@media only screen and (max-width: 740px) {
  /* Small desktop / ipad view: 3 tiles */
  .gallery li {
    width: 33.3%;
    padding-bottom: 33.3%;
  }
}
@media only screen and (max-width: 540px) {
  /* Tablet view: 2 tiles */
  .gallery li {
    width: 50%;
    padding-bottom: 50%;
  }
}
@media only screen and (max-width: 320px) {
  /* Smartphone view: 1 tile */
  .gallery li {
    width: 100%;
    padding-bottom: 100%;
  }
}




@media only screen and (max-width: 740px) {
  /* Small desktop / ipad view: 3 tiles */
  .gallery li {
    width: 33.3%;
    padding-bottom: 33.3%;
  }
}
@media only screen and (max-width: 540px) {
  /* Tablet view: 2 tiles */
  .gallery li {
    width: 50%;
    padding-bottom: 50%;
  }
}
@media only screen and (max-width: 320px) {
  /* Smartphone view: 1 tile */
  .gallery li {
    width: 100%;
    padding-bottom: 100%;
  }
}

/*galeriafin*/


.tab {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    text-align: center;
    padding-top: 1em;
    background-color: aliceblue;
}

.tab a{
    text-decoration: none;
    color: #ff3100;
    font-family: 'roboto slab', serif;
}

.proyectos{
    padding-bottom: 1em;
    color: grey;
    font-family: 'roboto slab', serif;
}
.contenedoramigo {
    background-color: aliceblue;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 3em;
}


.perfilamigo {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 2em;
    text-align: center;
    
}

.fotoamigo {
    border-radius: 180px;
    max-width: 80%;
   
}

.useramigo {
    font-family: 'roboto slab', serif;
    font-size: 1em;
    display: block;
    margin-left: auto;
    margin-right: auto;
    
}

.statsamigo {
    font-size: 0.8em;
}

.fotoseguidor {
    border-radius: 180px;
    max-width: 35%;
    margin-bottom: 1em;
    margin-left: 8em;
    display: block;}

.upload {
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 2em;
    text-align: center;
}

@media (min-width: 700px) {
  
    .upload {
        width: 40%;
    }
  
}

.formsubir {
    text-align: center;
}

.etiqueta2{
    height: 9em;
}

.gris1 {
    background-color: #b7b7b7;
    border-radius: 40px;
    border: 0px;
    display: block;
    padding: 0.5em;
    margin-left: auto;
    margin-right: auto;
}

.subirtext {
    text-align: center;
    font-family: 'roboto slab', serif;
    color:grey;
    padding: 2em;
}

.proyectofoto {
    width: 80%;
    padding-top: 2em;
}

.tituloproyecto {
    font-family: 'roboto slab', serif;
    font-size: 2em;
    color: #ff3100;
    padding-top: 1em;
}

.proyval {
    font-family: 'roboto slab', serif;
    font-size: 1em;
    color: grey;
}

.proydesc {
    display:block;
    padding-top: 1em;
    font-family: 'roboto', sans serif;
    color: grey;
    font-size: 1em;
    text-align: left;
    margin-left: 2em;
    
    
}

.favframe {
    display: flex;
    flex-direction: row;
    width: 90%;
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 1em;
    
    
}

.favbox{
    text-align: center;
    
}

.minifav {
    width: 5em;
    border-radius: 180px;
    padding:1em;
}

.favpic {
    width: 1.5em;
}

.favtext {
    color:grey;
}
.editarfotito {
    display: block;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 2em;
    text-align: center;
}
@media (min-width: 700px) {
  
    .editarfotito {width:10%;}
    }

.categoria {
    text-align: center;
    background-color: #f13100;
    padding-top: 1em;
    padding-bottom: 1em;
    font-family: 'roboto slab', serif;
    font-size: 2em;
    font-weight: bold;
    margin-top: 1em;
}

.cateicon {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 40%;
}

@media (min-width: 700px) {
  
    .cateicon {width:5%;}
    }

.intinoticias {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    background-color: aliceblue;
    padding-bottom: 2em;
    
    
    
}

.intiarticulo {
    padding: 1em;
    
    
}

.intiimg {
    width: 100%;
    padding-top: 2em;
    padding-bottom:1em;
    
    
}

.intititulo {
    font-family: 'roboto slab', serif;
    font-size: 1.5em;
    color: #f13100;
    padding-bottom: 0.5em;
    
}

.intitexto {
    font-family: roboto;
    color: gray;
    font-size: 1em;
    
    
}

.intiicono {
    width: 1.5em;
    padding-left: 3.5em;
    padding-top: 1em;
    
}

.intibajada {
    font-family: roboto;
    color: darkgray;
    font-size: 0.8em;
    padding-bottom: 0.2em;
}

.intilogo {
    width: 90%;
    padding-top: 2em;
    padding-bottom:1em;
    
    
}

@media (min-width:698px)
{.intiarticulo {max-width: 60%;
    margin-left: auto;
    margin-right: auto;
    
    }
}