* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* Ensures padding doesn't affect the element's width/height */
  overflow-x: hidden;
}
/* Nav styling stars*/
header nav {
  display: flex;
  justify-content: center;
  background-color: black;
 
}

header nav ul {
  list-style: none;
  display: flex;
  padding: 4px;
  margin: 0;
}

header nav ul li {
  margin: 0;
}

header nav ul li a {
  display: inline-block; 
  padding: 5px 15px;
  text-decoration: none;
  color: white;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  transition: color 0.3s, font-size 0.3s, text-shadow 0.3s, transform 0.3s;
}

header nav ul li a:hover {
  color: red;
  font-size: 20px;
  text-shadow: 2px 0px 4px red;
}

header nav ul li a:active {
  transform: scale(1.4);
}
/* Nav styling ends*/




#video-section {
    padding: 20px;
    background-color: #111; /* Black theme for the section */
    color: white;
    text-align: center;
}
#video-section h2{
  padding-bottom:20px;
  text-shadow: 0.5px 1px 7px white;
  font-family:Helvetica;
 
}

.video-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.video-item {
    background-color: #222;
    padding: 5px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    max-width: 560px; /* Matches the iframe width */
}

.video-item p {
    margin-top: 10px;
    font-size: 16px;
}
.video-item iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9; /* Maintains the 16:9 ratio */
}


.yt{
  

display: flex;
align-items: center;
justify-content: center;
font-size: 40px;
}
.pp{
  padding-top:7px;
  padding:10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  
  
}
.yt:hover{
  
  color:red
  
 
  
}