/* static/css/styles.css */

body {
    font-family: Arial, sans-serif;
    color: #fff;
    width: 256px;
    height: 256px;
    margin: 0 auto;
    background-color: #000;
    overflow: hidden;
}

.container {
    width: 256px;
    height: 256px;
    margin: 0px;
    background-color: #000;
}

h1.logo {
    margin: 0px;
    padding-top: 2px;
    color: #000;
}

img.logo-img {
    width: 256px;
    height: auto;
    padding-top: 2px;
}

p {
    text-align: right;
    padding-right: 6px;
    margin: 0px;
}

#element {
    position: relative;
    height: 36px;
    padding 2px;
    padding-top: 22px;
}

.parking {
    position: absolute;
    margin: 2px;
    padding-top: 0px;
    padding-left: 6px;
}

.direction {
    position: absolute;
    top: 50%;
    margin-top: -14px;
    padding-top: 13px;
    padding-left: 40px;
}

.name {
    position: absolute;
    text-align: left;
    padding-top: 6px;
    padding-left: 66px;
    width: 150px;
}

.state {
    position: relative;
    top: 50%;
    margin-top: -10px;
    float: right;
    padding-right: 6px;
}

#container-banner {
    position: relative;
    width: 256px;
    height: 20px;
    overflow: hidden;
}

#banner {
    font-size; 10px;
    position: absolute;
    white-space: nowrap;
    animation: desplazarTexto 8s linear infinite;
    overflow: hidden;
}

@keyframes desplazarTexto {
    0% {
        left: 100%;
    }
    100% {
        left: -100%;
    }
}


