html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    width: 100%;
    height: 100%;
    max-width: 1920px;
    min-width: 800px;
    min-height: 600px;
    max-height: 1080px;
    overflow: hidden;
    margin: 0 auto;
}

.quadro {}

h1,
h5 {
    font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.quadro-sup {
    width: auto;
    height: 20%;
    max-height: 216px;
    min-height: 120px;
    padding: 0px;
    background-color: #0088b7;
}

.sup-logo {
    width: 15%;
    height: 100%;
    float: left;
}

img.logo {
    display: block;
    width: 85%;
    height: 85%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3%;
}

.sup-texto {
    width: 40%;
    height: 100%;
    float: left;
    background-image: url("https://www.facom.ufms.br/ntv/ufms_transparent.png");
    background-size: 100%;
    background-position: bottom;
    background-repeat: no-repeat;
}

.sup-tempo {
    width: 23%;
    height: 100%;
    min-height: 120px;
    float: left;
    padding-left: 10px;
}

.sup-data-hora {
    width: 22%;
    height: 100%;
    float: left;
}

.relogio {
    height: 70%;
    display: inline-block;
}

.credito {
    height: 30%;
}

#digital-clock {
    float: right;
    font-size: 1.6vw;
    font-size: calc(16px + 1.4vw);
    line-height: 1;
    text-align: right;
    width: 100%;
    text-shadow: 1px 1px 1px #000;
    padding-right: 3%;
    white-space: nowrap;
}

#digital-clock span.day {
    font-size: 1.2vw;
    font-size: calc(8px + 1vw);
    line-height: 1;
    text-shadow: 1px 1px 1px #000;
    white-space: pre-line;
}

.day{
    font-size: 1.2vw;
    font-size: calc(8px + 1vw);
    line-height: 1;
    text-shadow: 1px 1px 1px #000;
    white-space: pre-line;
}

.titulo_site {
    color: #fff;
    font-weight: bold;
    font-size: 1.4vw;
    font-size: calc(12px + 1.2vw);
    margin: 0px;
    padding-top: 1%;
    padding-bottom: 1%;
    line-height: 100%;
    vertical-align: middle;
    text-shadow: 2px 2px 2px #000;
    white-space: nowrap;
}

.subtitulo_site {
    color: #fff;
    font-weight: bold;
    font-size: 1.2vw;
    font-size: calc(10px + 1vw);
    margin: 0px;
    line-height: 100%;
    vertical-align: middle;
    text-shadow: 1px 1px 1px #000;
    margin-right: 20%;
}

.slogan {
    font-size: 0.8vw;
    font-size: calc(6px + 0.6vw);
    color: #fff;
    text-shadow: 1px 1px 1px #000;
}

.digital {
    font-weight: bold;
    font-size: 1.4vw;
    padding: 10px 0;
    color: #fff;
    display: block;
    min-height: 66px;
}

.quadro-mid {
    width: 100%;
    height: 60%;
    max-width: 1920px;
    min-width: 800px;
    max-height: 648px;
    min-height: 360px;
    margin: 0 auto;
    padding: 0px;
    display: block;
}

.mid-esquerda {
    width: 50%;
    height: 100% !important;
    max-width: 960px;
    min-width: 400px;
    margin: 0 auto;
    padding: 0px;
    float: left;
}

.mid-direita {
    width: 50%;
    height: 100% !important;
    max-width: 960px;
    min-width: 400px;
    margin: 0 auto;
    padding: 0px;
    float: left;
    display: block;
}

.quadro-inf {
    width: 100%;
    height: 20%;
    max-height: 216px;
    min-height: 120px;
    margin: 0 auto;
    background-color: #0088b7;
    display: block;
}

.marquee {
    width: 100%;
    height: 100%;
    white-space: nowrap;
    overflow: hidden;
    vertical-align: middle;
    top: 25%;
    position: relative;
}

.marquee span {
    color: white;
    font-size: 450%;
    font-size: -webkit-calc(16px + 4vw);
    font-size: calc(16px + 4vw);
    display: inline-block;
    padding-left: 100%;
    text-indent: 0;
    text-align: center;
    vertical-align: middle;
    text-shadow: 2px 2px 2px #000;
    -webkit-animation: marquee 140s linear infinite;
    animation: marquee 140s linear infinite;
}


/* Make it move */

@-webkit-keyframes marquee {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    100% {
        -webkit-transform: translate(-100%, 0);
        transform: translate(-100%, 0);
    }
}

@keyframes marquee {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    100% {
        -webkit-transform: translate(-100%, 0);
        transform: translate(-100%, 0);
    }
}


