@import url(ejemplo.css);
@import url(header.css);
@import url(plan.css);
@import url(slider.css);

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: rgba(0,0,0,.5);
	background-size: 100vw 100vh;
	background-attachment: fixed;
    padding-bottom: 1.25rem;
}

main {
  overflow: hidden;
}

.linediv{
    width: 90%;
    border-color: rgba(255,255,255,.0625);
    margin: 1rem auto;
}

.footer{
	margin: auto;
	width: 100%;
	height: fit-content;
	display: flex;
	justify-content: center;
	align-items: center;
	background: -webkit-linear-gradient(to right, #000, #000, #000, #343e63, #000, #000, #000);
	background: linear-gradient(to right, #000, #000, #000, #343e63, #000, #000, #000);
	border-radius: .46875rem;
	box-shadow: inset 0 0 .375rem rgba(127,220,255,.75);
	padding: .625rem;
    position: fixed;
    bottom: 0;
    z-index: 100;
}

.footer img{
    display: block;
    margin: .25% auto;
}

@media (max-width: 767px){
    .footer img{
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 950px) and (min-width: 768px){
    .footer img{
        max-width: 300px;
    }
}

@media (max-width: 1199px) and (min-width: 951px){
    .footer img{
        max-width: 350px;
    }
}

@media (min-width:1200px){
    .footer img{
        max-width: 400px;
    }
}