/* Style the video: 100% width and height to cover the entire window */


.body {
      font-family: 'Roboto', sans-serif;
	  
}

.macondo-swash-caps-regular {
  font-family: "Macondo Swash Caps", cursive;
  font-weight: 400;
  font-style: normal;
}


#myVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}

/* Add some content at the bottom of the video/page */
.content {
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
   min-width: 95%;
  padding: 20px;
  margin-bottom: 10%;
  margin-left: 1%;
   margin-right: 1%;
}

/* Style the button used to pause/play the video */
#myBtn {
  width: 30vw;
  font-size: 10v;
  padding: 10px;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
   font-family: "Alfa Slab One", serif;
  font-weight: 400;
  font-style: normal;

}

#myBtn:hover {
  background: #ddd;
  color: black;
}

#h1{
	 font-size: 30px;
	 font-family: 'roboto';
	 
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5); /* semi-transparent like .content */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 1rem 0;
  z-index: 999;
  backdrop-filter: blur(8px);
}

.bottom-nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.3s ease;
}

.bottom-nav a:hover {
  color: #f5d742; /* or whatever accent color you're using */
}


	