* {
margin: 0;
padding: 0;
}

.bgimg {
/* Full-screen */
height: 100vh; /* Use viewport height for full-screen height */
/* 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 white text color to all elements inside the .bgimg container */
color: white;
/* Add a font */
font-family: "Courier New", Courier, monospace;
/* Set the font-size to 25 pixels */
font-size: 3.2vh;
}

.bgimg video {
width: 100%;
height: 100%; /* Make the video fill the entire .bgimg container */
object-fit: cover; /* Make the video cover the container without stretching */
display: block; /* Remove any extra spacing */
position: absolute; /* Position the video absolutely within the .bgimg container */
}


/* Position text in the top-left corner */
.topleft {
position: absolute;
top: 16px;
left: 16px;
background: rgb(204, 204, 204); /* Fallback for older browsers without RGBA-support */
background: rgba(44, 44, 44, 0.5);
padding: 15px;
border-radius: 15px;
font-size: 3.2vw;
}

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

/* Position text in the middle */
.middle {
position: absolute;
top: 25%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
background: rgb(204, 204, 204); /* Fallback for older browsers without RGBA-support */
background: rgba(44, 44, 44, 0.5);
padding: 3vh;
border-radius: 3vh;
}
.middledown {
position: absolute;
width: 80%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
background: rgb(204, 204, 204); /* Fallback for older browsers without RGBA-support */
background: rgba(44, 44, 44, 0.5);
padding: 15px;
border-radius: 15px;
}
.middlebottom {
position: absolute;
top: 75%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
background: rgb(204, 204, 204); /* Fallback for older browsers without RGBA-support */
background: rgba(44, 44, 44, 0.5);
padding: 15px;
border-radius: 15px;
}
.table {
font-size:3.2vw;
padding: 10px;
width: 100%;
text-align: center;
}
@media screen AND (max-width:600px) {
  .middle h1{
    font-size: 3vh;
  }
}

hr {
margin: auto;
width: 40%;
}

a {
  text-align: center;
  color: white;
}

.topright {
  position: absolute;
  top: 16px;
  right: 15px;
}

.topright a{ 
  text-decoration: none;
  color: #0e0e10;
}

/* left side */
.left{
  right: 0;
  bottom: 10px;
  position: absolute;
}
