body, html {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    color: #ffffff;
}

#body {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;

    background: linear-gradient(to bottom, rgb(30, 30, 30), rgb(25, 25, 25));
}

#ticker-container {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    opacity: 0;
}

#ticker-container.show {
    opacity: 1;
    transition: opacity 4000ms ease-in;
}

.time-part {
    width: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#ticker-date {
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    height: 20px;
    letter-spacing: 1px;
}

.seperator {
    margin-right: 2px;
    margin-left: 2px;
}

#ticker {
    font-size: 70px;
    font-weight: bold;
    transition: color 1500ms ease-out, transform 1500ms ease-out;
    display: flex;
    /*align-items: flex-end;*/
    align-items: center;
    justify-content: center;
}

#ticker-value {
    letter-spacing: 1px;
}

#ticker .symbol {
    font-size: 39px;
    /*margin-bottom: 8px;*/
    margin-top: 1px;
    margin-right: 8px;

}

#ticker.direction-up, #ticker.direction-down {
    transition: color 300ms ease, transform 300ms ease;
    /*transform: scale(1.05);*/
    transform-origin: center center;
}

#ticker.direction-up {
    color: rgb(0, 210, 102);
}

#ticker.direction-down {
    color: rgb(255, 0, 0);
}