.a{
	text-decoration:none;
}
html, body{
	-webkit-user-select: none; /* Safari 3.1+ */
	-moz-user-select: none; /* Firefox 2+ */
	-ms-user-select: none; /* IE 10+ */
	user-select: none; /* Standard syntax */
	
	font-family: 'minusculas';
	
	height: 100%;
	width: 100%;
	
	background: black;
}
/* carousel de imagenes */
.slider-container {
  display: inline;
  width: 100%;
  height: 100vh;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
}

.slider-container img {
  flex: 0 0 100%;
  width: 100%;
  object-fit: cover;
  scroll-snap-align: center;
}
/* fin carousel */

.titulo_contenido{
    position: fixed;
    width: 100%;
    top: 40px;
    color: white;
    text-align: center;
    font-size: 1.8em;
}
    
.cabecera_redes_index{
    position: fixed;
    width: 96%;
    right: 20px;
    top: 0;
    z-index: 2000;
}
    

    
/* Media Queries */
@media screen and (max-width: 1000px) {
    .cabecera_redes_index, .menu_index{
        display: none;
    }
    .titulo_contenido{
        top: 80px;
    }
}