.articlescontainer {
    background-color: white;
    padding: 25px;
    max-width: 1000px;
    width: 75%;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    user-select: none;
    display: flex;
    align-items:center;
    justify-content:flex-start;
    transition: all 0.6s;
}

.articlescontainer:hover {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.5);
}

.thumbnail {
    height: 64px;
    border-radius: 10px;
    margin-right: 20px;
}

.description {
    color: #011333;
    font-size: 20px;
}