/* Class Container definition to write Text on Image */

.container 
{
  position: relative;
  text-align: center;
  color: white;
  /*font-family: Lucida Handwriting;*/
  font-family: Georgia;
  font-style:italic;
  display: inline; /* inline produces no [new line] after line display */
}

.bottom-left 
{
  position: absolute;
  bottom: 8px;
  left: 16px;
}

.top-left 
{
  position: absolute;
  top: 8px;
  left: 16px;
}

.top-right 
{
  position: absolute;
  top: 8px;
  right: 16px;
}

.bottom-right 
{
  position: absolute;
  bottom: 8px;
  right: 16px;
}

.centered 
{
  /* width:  1000px;*/ /* change the width of the container */
  /* height: 20px;  */ /* change the height of the container */

  position: absolute; /* relative */
  top: -50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

