.timelineDashBoard {
    display: flex;
    font-size:small;
    /*align-items: center;*/
    /*justify-content: center;/*
    padding: 20px;
    overflow-x: auto;
    white-space: nowrap;
    /*background-color: #f5f5f5;*/
}
.timelineDashBoard .event {
    position: relative;
    min-width: 150px;
    padding: 10px;
    background: #3498db;
    color: white;
    text-align: center;
    border-radius: 10px;
    margin: 10px;
}
.timelineDashBoard .event::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    width: 20px;
    height: 5px;
    background: #3498db;
}
.timelineDashBoard .event:last-child::after {
    content: none;
}

#keyboard {
    margin: 0;
    padding: 0;
    list-style: none;

}

#keyboard li {
    float: left;
    margin: 0 5px 5px 0;
    width: 105px;
    height: 65px;
    font-size: 30px;
    line-height: 60px;
    text-align: center;
    background: rgb(159, 205, 243);
    border: 1px solid #f9f9f9;
    border-radius: 5px;
}

.capslock,
.tab,
.left-shift,
.clearl,
.switch {
    clear: left;
}

#keyboard .tab,
#keyboard .delete {
    width: 70px;
}

#keyboard .capslock {
    width: 80px;
}

#keyboard .return {
    font-size: 30px;
    width: 105px;
}

#keyboard .left-shift {
    width: 70px;
}

#keyboard .switch {
    width: 90px;
}

#keyboard .rightright-shift {
    width: 109px;
}

.lastitem {
    margin-right: 0;
}

.uppercase {
    text-transform: uppercase;
}

#keyboard .space {
    float: left;
    width: 556px;
}

#keyboard .switch,
#keyboard .space,
#keyboard .return {
    font-size: 16px;
}

.on {
    display: none;
}

#keyboard li:hover {
    position: relative;
    top: 1px;
    left: 1px;
    border-color: rgb(0, 0, 0);
    cursor: pointer;
}