.info {
	display: grid;
	grid-template-columns: 70% 30%;
	place-items: center left;
}

.info img {
	width: 100%;
}

.terkep {
	display: grid;
	grid-template-columns: 25% calc(75% - 1em);
	grid-column-gap: 1em;
	grid-row-gap: 1em;
	place-items: center;
	margin-top: 10px;
	padding: 10px;
}

.terkep img {
	width: 100%;
}

.terkep iframe {
	width: 100%;
}

@media only screen and (max-width: 800px) {
	.info {
		grid-template-columns: 100%;
	}
	
	.terkep {
		grid-template-columns: 100%;
	}
	
	.terkep iframe {
		height: 75vw;
	}
}