﻿body, html {
  height: 100%
}

.bgimg {
    /* Background image */
    background-image: url('/images/IMG-20231127-WA0053.jpg');
    /* Full-screen */
    background-repeat: no-repeat ;
    /* Center the background image */
    background-position: left;
    background-size :cover ;
    /* Scale and zoom in the image */
    /* Add position: relative to enable absolutely positioned elements inside the image (place text) */
    /* Add a white text color to all elements inside the .bgimg container */
    /* 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;
}

/* 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;
  color :#ffd800;
}

/* Style the <hr> element */
hr {
  margin: auto;
  width: 40%;
}