body {
    font-family: 'Roboto', sans-serif;
    color: white;
    background-color: #212121;
    user-select: none;
    -moz-user-select: none;
    overflow: hidden;
}

#time {
    padding: 50px;
    border: 1px solid;
    background-color: #212121;
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: 10% 25% 0 25%;
}

#t {
    font-size: 50px;
}

#feed {
    display: flex;
    justify-content: center;
    margin: 50px 10% 0 10%;
    flex-wrap: wrap;
    overflow: hidden;
}

.item {
    border: 1px solid;
    padding: 5px;
    margin: 5px;
    text-decoration: none;
    color: white;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    flex-grow: 1;
}

.item:hover {
    box-shadow: inset 0 35px 0 0 #212121;
    transition: 1s;
}
