html, body {
  height: 100%; /* fill viewport */
  margin: 0;    /* remove browser default gap */
}
body {
  border: 5px solid #F48FB1;
  padding: 30px; /* space inside the border */
  background-image: url("pink.jpg"); /* replace with your image */
  background-size: cover;       /* fill the screen */
  background-repeat: no-repeat; /* no tiling */
  background-position: center;  /* center image */
  color: #CC338B;
  font-family: "Times New Roman";
  box-sizing: border-box; /* ensures border + padding fit in viewport */
}
body div {
  height: 100px;
  width: 100px;
  background: rgba(255, 255, 255, 0.5); /* translucent box over image */
}
.wrapper {
  display: inline-block;
  border: 3px outset black;
  background-color: #FFDBE9;
  height: 10px;
  width: 20px;
  line-height: 10px; /* matches height */
  box-sizing: border-box;
}