.iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 oranı */
    height: 0;
}
.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

p img {
    /*padding: 20px;           !* görselin kendi içindeki boşluk *!*/
    margin-right: 15px;      /* resim ile metin arasındaki boşluk */
    float: left;             /* metin resmin etrafında akar */
    box-sizing: border-box;  /* padding görsel boyutuna dahil olur */
    max-width: 100%;         /* responsive için */
    height: auto;            /* orantılı yükseklik */
}


