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

.word {
    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;
}

.wordimg {
    display: block;
    width: 200px;
    height: 200px;
    margin: 10px;
    border-radius: 4px;
    overflow: hidden;
}

.wordimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

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

a {
    color: #3ea6ff;
}

.mean p {
    word-break: break-all;
}

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

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

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