Keep a 16:9 aspect ratio for an embedded video

.video {
    position: relative;
    height: 0;
    padding-bottom: 56.25%;   /* 9 / 16 */
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}