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

.md__image img {
    border-radius: 16px;
    border: 1px solid #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s;
    max-height: 480px;
}

.md__image img:hover {
    transform: scale(1.05);
}
