.items {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.item {
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: 250px;
    background: #fff;
    box-shadow: 0 0 3px #00000090;
    padding: 20px 10px;
    border-radius: 4px;
    width: 70%;
    margin-bottom: 20px;
}

.itemimg {
    width: 200px;
    height: 200px;
    overflow: hidden;
    background: #fff;
    padding: 10px;
    border-radius: 4px;
}

.itemimg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

h3 {
    color: #333;
    font-size: 1.4rem;
}

.details {
    margin-left: 30px;
    width: 70%;
}

.details p {
    color: #333;
    background: #d1d1d1;
    padding: 20px;
    border-radius: 4px;
}

@media (max-width: 601px) {
    .item {
        flex-direction: column;
    }

    .details {
        margin-left: 0;
        width: 100%;
    }

    .details h3 {
        text-align: center;
        word-break: break-all;
    }
}