body{
    padding-top: 100px;
    padding-bottom: 50px;
    background-color: rgb(34, 33, 33);
}
.content{
    margin-left: 20px;
    margin-right: 20px;
}
header{
    width: 100%;
}
/* Style the header */
.fixed-header, .fixed-footer{
    height: fit-content;
    width: 100%;
    position: fixed;     
    background-color: rgb(34, 33, 33);   
    padding: 10px;
    color: #fff;
    display: block;
}
.fixed-header{
    top: 0;
    border-bottom: 1px solid red;
    
}

.fixed-footer{
    bottom: 0;
    border-top: 1px solid red;
}    
/* Some more styles to beutify this example */
.logo{
    width: fit-content;
    height: fit-content;
    margin-right: auto;
}
nav a{
    color: #fff;
    text-decoration: none;
    padding: 7px;
}

ul{
    list-style-type: none;
    display: flex;
    padding-right: 40px;
}
.item {
    padding-right: 20px;
    padding-top: 20px;
}
  
.item a {
      text-decoration: none;
        display: block;
        padding-right: 3px;
        padding-top: 5px;
        color: white;
        
}

h1, h2, h3, h4{
    color: red;
    
}
p{
    color: white;
}

.containerh2{
    float: center;
    align-content: center;
}



.app1 {
    border-bottom: 2px dashed white;
    height:fit-content;
    
}

.app2{
    border-bottom: 2px dashed white;
    height: 200px;
    position: relative;
}
/*--------------MORE TO COME SECTION, to be removed later after more apps are added-----*/
.app2 p{
   /* padding-top: 2%;
    text-align: center;*/
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}

.app1Img{
    padding-right: 2%;
    margin-right: 2%
}
.app1Img img{
    width: 250px;
    height: auto;
    ;

}

.sec1{
    padding: 2%;
    margin: 2%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
      flex-direction: row ;
      align-items: center;
}

@media screen and (max-width:768px) {

    body{
        padding-top: 80px;
        padding-bottom: 50px;
        
    }
    
    header{
        width: 100%;
        display: block;
    }

    ul{
        list-style-type: none;
        display: flex;
        flex-direction: row;
        padding-right: 4px;
        padding-left: 4px;
    }
    .item {
        padding-right: 20px;
        padding-top: 20px;
    }

    .logo{
        width: fit-content;
        height: fit-content;
        margin-right: auto;
    }
      
}
.video-container {
            width: 280px; /* Set the width of the container */
            margin: 20px auto; /* Center the container horizontally */
            padding: 10px; /* Add some padding */
            border: 2px solid #ccc; /* Optional: border for styling */
            background-color: #f9f9f9; /* Optional: background color for styling */
            text-align: center; /* Center text inside the container */
        }

        video {
            width: 100%; /* Make the video fill the container width */
            height: auto; /* Keep the aspect ratio */
        }
