body {
  background-color: black;
  color: green;
  font-family: Verdana;

}

.parent {
display: grid;
grid-template-columns: 2fr 1fr;
grid-template-rows: 1fr;
grid-column-gap: 28px;
grid-row-gap: 0px;
}

.div1 { grid-area: 1 / 1 / 2 / 4; }
.embed { grid-area: 1 / 1 / 2 / 2; }
.text { grid-area: 1 / 2 / 2 / 3; }