body {
  background-color: black;
  color: white;
  font-family: Verdana;
  margin: 0;
  overflow-y: hidden;
  overflow-x: hidden;
}

.page {
  height: calc(100vh - 10px); /* 5px top + 5px bottom */
  margin-top: 10px;
  margin-left: 0px;
  border: 5px solid #E0943B;
  border-radius: 8px;
  box-sizing: border-box;
  position: relative;

  background-image: 
    url("/images/mc_grass.png"),   /* top layer */
    url("/images/mc_dirt.png");    /* bottom layer */
  background-repeat: 
    repeat-x,  /* grass only repeats horizontally */
    repeat;    /* dirt tiles everywhere */
  background-size: 
    50px 50px, /* grass size */
    50px 50px; /* dirt size */
  background-position: 
    top left,  /* grass at the top */
    top left;  /* dirt starts same position */
}

#post {
  background-color: rgba(0, 0, 0, 0.7);
  margin: 30px 15px;
  border: 5px solid #E0943B;
  border-radius: 8px;
  padding: 12px;
  margin-left: 15px;
  font-weight: bold;
  font-size: 20px;
  color: white;
  font-family: Verdana;
  text-decoration: none;
}
