.widget {
    border-style: solid;
    border-radius: 15px;
    border-color: grey;
    padding: 5px;
    margin-right: 5px;
    width: 50%;
    box-shadow: 5px 5px grey;
}

.widget-description {
    max-height: 50px; 
    overflow: auto; 
    text-overflow: ellipsis
}

@media only screen and (max-width: 600px) {
    .widget {
        border-style: solid;
        border-radius: 15px;
        border-color: grey;
        padding: 5px;
        margin-right: 5px;
        width: 100%;
        box-shadow: 5px 5px grey;
    }
}