p {
 color: white; 
}

.container {
  display: grid;
 grid-template-areas:
    "status img";
 grid-template-columns: 3fr 1fr;
}

.container > div.status {
 grid-area: status; 
 grid-row: 1;
 grid-column: 1; 
}

.container > div.img {
 grid-area: img; 
 grid-row: 1;
 grid-column: 2; 
}

html {
 background-image: url('https://file.garden/aEnK9GK7YhOgwBQV/third/tumblr_c4a90c76d0262cbb00e1a78e076bce3f_138dcc13_1280.gif'); 
}

body {
 background-image: url('https://file.garden/aEnK9GK7YhOgwBQV/third/tumblr_f53756988c10cacb96f0b3a2d36b2123_81a3d54b_250.png'); 
}