*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

.bgimg {
	width: 100%;
	min-height: 100vh;
	height: auto;
	background-image: url(../images/pipe.jpg);
	background-position: center;
	background-size: cover;
	padding: 10px 8%;
	text-align: center;
	color: #fff;
} 

/* 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: fixed;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  margin: 0;
  font-family: "Arial",Arial, monospace;
  font-size: 24px;
  color: white;
}

/* Style the <hr> element */
hr {
  margin: auto;
  width: 80%;
}

@media only screen and (max-width: 600px){
	.bgimg{
		background-image: url(../images/pipe_small.jpg);
}

