#kondoom {
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

#kondoom .box {
    width: 600px;
    border: 2px solid #000;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#kondoom .box-header {
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

#kondoom .box-content {
    display: flex;
    justify-content: space-between;
	align-items: center;
    width: 100%;
	min-height: 150px;
}

#kondoom .box-content a {
	min-width: 200px;
}

#kondoom .box-content img {
    width: 200px;
    height: 150px;
    object-fit: cover;
	max-width: 100%;
	flex-shrink: 0;
}

#kondoom .text {
    margin-left: 20px;
    flex-grow: 1;
	word-wrap: break-word;
}