/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global styles */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding: 0;
  margin: 0;
  color: #333;
  background-color: #f9f9f9;
}

.Published{
	 margin-top: 40px;
  margin-left: 20px;
  display:block;
   font-size: 20px;
}

/* Header styling */
header {
  background: #4070f4;
  color: #fff;
  padding: 20px;
  
}

header h1 {
  margin-bottom: 10px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover {
  text-decoration: underline;
}



.video-container video{
	width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
	object-fit: fill;	

}

.video-container{
	  position: relative;
	  display:block;
	  background-color:black;
 height:300px;
   width:100%;

	
}

/* Hero section */
section.hero{
	position:absolute;
	top:0px;
	margin:auto;
	width:100%;
	height:300px;
	background-size: cover;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.3);
}

.hero {

  color: #fff;
  text-align: center;
  position:absolute;
}

.hero h2  {
  
  font-size: 2rem;
}

.hero section{
	position:absolute;
	width:100%;
	height:100%;
	
	top:100px;
}

/* Main content */
main {
  padding: 20px;
}

main section {
  margin-bottom: 40px;
}

main h2 {
  margin-bottom: 10px;
  color: #007BFF;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 15px;
  margin-top: 20px;
}


.Donate{
	width:800px;
}


/* =========================
   MEDIA QUERIES
   ========================= */

/* Tablet screens (768px and up) */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  header {
    flex-direction: column;
    text-align: center;
  }

  .hero h2 {
    font-size: 1.8rem;
  }
}

/* Mobile screens (480px and down) */
@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  nav ul {
    gap: 8px;
  }

  .hero {
    padding: 50px 15px;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

  main {
    flex-direction: column;
  }

  main section {
    flex: 1 1 100%;
  }
}