
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial;
  font-size: 17px;
}

h1 {
  text-align: center;
  font-size: 5rem;
    color: rgb(161, 46, 46);
     font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

#myVideo {
position: fixed; /* Positions the video relative to the viewport */
  top: 0;
  left: 0;
  min-width: 100%; /* Ensures the video covers the full width */
  min-height: 100%; /* Ensures the video covers the full height */
  object-fit: cover; /* Crops the video to fill the element while maintaining aspect ratio */
  z-index: -1; /* Places the video behind other content */
}

.content {
  position: fixed;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
  width: 100%;
  padding: 20px;
}

#myBtn {
  width: 200px;
  font-size: 18px;
  padding: 10px;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
}

#myBtn:hover {
  background: #ddd;
  color: black;
}

.container {
  position: relative;
}

.bottomleft {
  position: absolute;
  bottom: 8px;
  left: 16px;
  font-size: 20px;
}

img { 
  width: 100%;
  height: auto;
  opacity: 0.5;
}
.discover {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 9999;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

/* adjust on small screens */
@media (max-width: 480px) {
  .discover {
    left: 12px;
    bottom: 12px;
    padding: 8px 12px;
    font-size: 14px;
  }
  