@import url(banner.css);
@import url(bootstrap.css);
@import url(contrato.css);
@import url(gcn.css);
@import url(generos.css);
@import url(header.css);
@import url(menu.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: 98%;
    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 (max-width: 1399px) and (min-width: 1200px){
    .footer img{
        max-width: 400px;
    }
}

@media (min-width: 1400px){
    .footer img{
        max-width: 400px;
    }
}