* {
  box-sizing: border-box;
}

body {
  /* get rid of scroll bars */
  overflow: hidden;
  margin: 0;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  min-height: 100vh;
  color: #fff;
  background-color: #070c15;
  text-align: center;
  font-size: 19px;
}
.imgBox {
  position: relative;
  width: 1300px;
  height: 376px;
}
.imgBox textarea {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  background-image: url(zim2007-1300wide.png);
  resize: none;
  outline: none;
  border: none;
}
.imgBox .barren {
  background-image: url(zim2004-1300wide.png);
  width: 50%;
  resize: horizontal;
  border-right: 3px solid #fff;
}
.imgBox .barren::-webkit-resizer {
  background: #f4db1c;
  border-radius: 100% 0 0 0;
}
a, a:visited {
  color: #f4db1c
}