@import url(header.css);
@import url(rock_parque.css);

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar{
    display: none;
}

body{
    background-image: url(../../img/fondo.jpg);
	background-size: 100vw 100vh;
	background-attachment: fixed;
}

.linediv{
    width: 95%;
    border-top: 3px solid #c3c3c3;
    margin: auto;
    margin-top: 3px;
}
.sociales{
    width: 100%;
}

.sociales img{
    margin: 10px;
    display: inline-block;
	transition: all 0.5s;
    padding-top: 10px;
}

.sociales img:hover{
    transform: scale(1.25);
}

.footer{
    width: 100%;
}

.footer img{
    display: block;
    margin: 1% auto .2%;
    width: 65%;
}

@media (max-width: 599px){
    .sociales img{
    width: 22px;
    }
    .footer img{
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 767px) and (min-width: 600px){
    .sociales img{
    width: 22px;
    }
    .footer img{
        width: 50%;
    }
}

@media (max-width: 950px) and (min-width: 768px){
    .sociales img{
    width: 25px;
    }
    .footer img{
        width: 40%;
    }
}

@media (max-width: 1199px) and (min-width: 951px){
    .sociales img{
    width: 30px;
    }
    .footer img{
        width: 35%;
    }
}

@media (min-width:1200px){
    .sociales img{
    width: 35px;
    }
    .footer img{
        width: 30%;
    }
}