@font-face {
    font-family: 'Digital-7 V7';
    src: url("https://db.onlinewebfonts.com/t/58045dabdc3a361cb9bb9faf2f1dd1f3.woff2")format("woff2"),
         url("https://db.onlinewebfonts.com/t/58045dabdc3a361cb9bb9faf2f1dd1f3.woff")format("woff");
}
* {
    margin:0px;
    padding:0px;
}
body {
    width:100vw;
    height:100vh;
    background-color: #FFFFFF;
}
.container {
    width:calc(100% - 20px);
    height:calc(100% - 20px);
    padding:10px 10px;
    display:grid;
    gap: 5px;
    grid-template-areas:
        "cabecalho"
        "conteudo"
        "rodape"
    ;
}

header {
    height:80px;
    line-height: 80px;
    grid-area: cabecalho;
    border-bottom: 2px solid #000;
    display:flex;
    overflow: hidden;
}
header img {
    width:70px;
    height:70px;
}
.lad-container {
    position:absolute;
    width:calc(100% - 90px);
    height:80px;
    line-height: 80px;
    overflow: hidden;
    white-space: nowrap;
    margin-left:70px;
}
header .titulo {
    display: inline-block;
    padding-left: 100%;
    color: #FFF;
    font-family: 'Digital-7 V7', monospace;
    font-size: 60px;
    letter-spacing: 3px;
    animation: scrollText 15s linear infinite;
    text-align: center;
    /* Efeito LED */
    text-shadow:
        0 0 5px #000000,
        0 0 10px #000000,
        0 0 20px #000000,
        0 0 40px #000000;
}

/* Animação */
@keyframes scrollText {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

section {
    display:block;
    grid-area: conteudo;
    height:calc(100vh - 160px) !important;
    overflow: auto;
}

footer {
    display:flex;
    justify-content: space-evenly;
    width:100%;
    height:50px;
    line-height: 50px;
    grid-area:rodape;
    background-color: #000;
    border-radius:10px;
}
.footeritem {
    display:flex;
    justify-content: center;
    align-items: center;
    height:50px;
    line-height: 50px;;
}
.footeritem img {
    height:30px;
}
.footeritem:hover {
    transform: translate(-2px, -2px) scale(1.05);
    font-weight: bold;
    cursor:pointer;
}
.footertexto {
    color:#FFF;
    padding-left: 15px;
}

@media (max-width:1200px) {
    .lad-container {
        margin-left:70px;
    }
    header .titulo {
        font-size:30px;
    }
}

@media (max-width:800px) {
    .lad-container {
        margin-left:70px;
    }
    header .titulo {
        font-size:20px;
    }

    .footeritem {
        font-size: 12px;
    }

    .footeritem img {
        height: 15px;
    }
}

@media (max-width:450px) {
    header {
        height:50px;
    }
    header img {
        width:40px;
        height:40px;
    }
    .lad-container {
        height:40px;
        line-height: 40px;
        margin-left:50px;
    }

    footer {
        flex-direction: column;
        align-items: start;
        height:auto;
    }

    .footeritem {
        font-size: 14px;
        width:180px;
        height:30px;
        justify-content: start;
        align-self: center;
    }

    .footeritem img {
        height: 15px;
    }
}