 /* Set height to 100% for body and html to enable the background image to cover the whole page: */
body, html {
  min-height: 100%;
  height: 100%
}

a:link {
	color: #525151;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #525151;
}
a:hover {
	text-decoration: none;
}
a:active {
	text-decoration: none;
}

.bg {
  /* Add a white text color to all elements inside the .bg container */
  color: black;
  /* Add a font */
  font-family: "Calibri", Courier;
  /* Set the font-size to 25 pixels */
  font-size: 25px;
}

/* Position text in the top-left corner */
.topleft {
  position: absolute;
  top: 0;
  left: 16px;
}

/* Position text in the bottom-left corner */
.bottomleft {
  position: absolute;
  bottom: 0;
  left: 16px;
}

/* Position text in the middle */
.middle {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%);
  text-align: center;
}

/* Style the <hr> element */
hr {
  margin: auto;
  width: 40%;
} 