/* Set height to 100% for body and html to enable the background image to cover the whole page: */
body, html {
  height: 100%;
  padding:0;
  margin:0;
}

.bgimg {
  /* Background image */
  background-image: url('./image/bg_169.jpg');
  /* Full-screen */
  height: 100%;
  /* Center the background image */
  background-position: center;
  /* Scale and zoom in the image */
  background-size: cover;
  /* Add position: relative to enable absolutely positioned elements inside the image (place text) */
  position: relative;
  /* Add a font */
  font-family: "Courier New", Courier, monospace;
  /* Set the font-size to 25 pixels */
  font-size: 25px;
}

/* Position text in the top-left corner */
.topleft {
  position: absolute;
  top: 0;
  left: 16px;
  color: #073646;
}

/* Position text in the bottom-left corner */
.bottomleft {
  position: absolute;
  bottom: 0;
  left: 16px;
  color: #d9d9d9;
  font-size: 15px;
}

/* Position text in the middle */
.middle {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #073646;
}

/* Style the <hr> element */
hr {
  margin: auto;
  width: 40%;
}

/* To display images side by side */
* {
  box-sizing: border-box;
}

.column {
  float: left;
  width: 14.2857%;
  padding: 5px;
}

/* Clearfix (clear floats) */
.row::after {
  content: "";
  clear: both;
  display: table;
}