/*                  ******HUOLTO*****                      */

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

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

a {
    text-decoration: none;
}

.bgimg {
  background-image: url("../kuvat/VaakaHeppa.jpg");
  min-height: 100vh;
  background-position: center;
  background-size: cover;
  position: relative;
  color: white;
  font-family: "Courier New", Courier, monospace;
  font-size: 25px;
}

/* Position text in the top-left corner */
.topleft {
  top: 0;
  left: 16px;
}

.topleft img {
    width: 100%;
    height: auto;
    max-width: 1000px;  
}

/* Position text in the bottom-left corner */
.bottomleft {
  position: absolute;
  bottom: 0;
  left: 16px;
}

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

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

footer {
    background-color: rgb(27, 27, 27);
    color: antiquewhite;
    text-align: center;
}