.blogcontainer {
    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;
}

.blogcontainer: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;
}

.pictures {
    width: 100%;
    border-radius: 20px;
}

@media screen and (max-width:480px) {
    .pictures {
        margin: 0px 10px;
        border-radius: 10px;
        width: calc(100% - 20px);
    }
}