&{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing; border-box;
}
html{
    scroll-behavior: smooth;
}
body{
    background: #000;
    color: #fff;
}
#header{
    width: 100%;
    height: 60vh;
    background-color: #000;
    background-size: cover;
    background-position: top;
}
.container{
    padding:10px 10%;
}

nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo{
    width: 240px;
}

nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}

nav ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    position: relative;
}
.header-text{
    margin-top: 2%;
    font-size: 35px;
    font-style: bold;
    text-align: center;
}
.video-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1px; 
    margin: 5px auto 0;
    max-width: 1200px;
}

.video-box {
    background: #262626; 
    padding: 25px; 
    border-radius: 10px; 
    width: calc(45% - 20px); 
    margin-bottom: 30px; 
}

.video-box iframe {
    width: 100%; 
    height: 325px; 
}






