* {
    
    box-sizing: border-box;
}

.backgroundImg{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;  /* Makes sure the video stays behind content */
    overflow: hidden;
    object-fit: cover; /* Makes the video cover the whole screen */
    object-position: center;
}

/* Sidebar Styles */
.sidebar {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 250px;
    position: fixed;
    top: 0;
    right: -250px;  /* Initially hidden off-screen to the right */
    background-color: rgba(0, 0, 0, 0.9);
    overflow-x: hidden;
    transition: 0.3s;
    padding-top: 60px;
    z-index: 1000;
}

.sidebar a {
    padding: 10px 20px;
    text-decoration: none;
    font-size: 18px;
    color: rgb(219, 117, 81);
    display: block;
    transition: 0.2s;
}

.sidebar a:hover {
    background-color: #ec6701;
    color: white;
    cursor: pointer;
}

.sidebar .close-btn {
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

#admin {
    position: absolute;
    bottom: 10px;
    right: 10px;
   
}

/* Overlay Background */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* Set the video to cover the background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;  /* Makes sure the video stays behind content */
    overflow: hidden;
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Makes the video cover the whole screen */
    object-position: center; /* Centers the video */
}
.backgroundImg{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;  /* Makes sure the video stays behind content */
    overflow: hidden;
    object-fit: cover; /* Makes the video cover the whole screen */
    object-position: center;
}






/* Main Content Styles */
body {
    margin: 0;
    text-align: center;
    font-family: Arial, sans-serif;
    height: 100vh;
    width: 100%;
    
}

main {
    display: flex;    
    flex-direction: column;
    align-items: center;
    justify-content: space-between;      
    color: white;
    width: 100%;
    height: 100%;
}

.header {
    display: inline-flex;
    background-color: #000000b5;
    color: white;
    align-items: center;  
    justify-content:space-between;
    align-content: center;
    justify-items: auto;
    padding: 10px;
    padding-right: 30px;
    width: 100%;
    z-index: 1000;
}
.header li {
    list-style-type: none;
    display: inline;
    padding: 10px;
}
.header a:hover{
    cursor: pointer;
}
.menu-icon:hover{
    cursor: pointer;
}
.my-university {
    text-decoration: none;
    color: white;
}
.header li {
    list-style-type: none;
    display: inline;
    padding: 10px;
}
.header a:hover{
    cursor: pointer;
}
.menu-icon:hover{
    cursor: pointer;
}


.main-section {
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    color: white;
    
    width: 70%;
    height: auto;
    border-radius: 15px;
}



#sectionBtn {
    background-color: hsl(21, 87%, 60%);
    color: white;
    padding: 10px 50px;
    border: none;
    border-radius: 10px;
    text-decoration: none;
}
#sectionBtn:hover {
    background-color: hsl(21, 87%, 40%);    
    cursor: pointer;
    
}

.footer {
    display: flex;
    flex-direction: row;
    width: 100%;
    bottom: 0px;
    background-color: #000000b5;
    color: white;
    align-items: center;  
    justify-content:space-between;
    align-content: center;
    justify-items: auto;
    display: absolute;
    padding: 10px;
    
}
@media screen and (max-width: 600px) {
    .footer {
        display: flex;
        flex-direction: column;
        margin-top: 0px;
        
    }
    .footer-button{        
        margin-top: 10px;
        min-width: 60%;
    
    }
    .main-section {
        width: 100%;
        height: 65%;
        border-radius: 0px;
        overflow-y: scroll;
    }
}


.footer-button {
   
    color: white;
    padding: 10px 20px;
    border: 1px solid rgb(255, 72, 0);    
    text-decoration: none;
}

@media screen and (max-width: 600px) {
    .social {
        display: none;
    }
    
}