body { padding-top: 56px; }
.left-aligned { margin-left: auto; }
.bg-dark { background-color: #343a40 !important; }
.bg-hero { background-color: #45b06cff; }

/* NavBar */
@media (min-width:1000px) {
    .nav-item {
        margin-right: 2.6vw;
        border: 0px solid antiquewhite;
        border-radius: 10px;
        
    }

    .nav-item:hover {
        border: 0px solid #d4af37;
        background-color: #002255;
        color: antiquewhite;
        border-radius: 10px;
    }

    .navbarcontainer {
        border-bottom-left-radius: 8.26px;
        border-bottom-right-radius: 8.26px;
        width: 100vw;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* CALLOUT */
.bd-callout { padding:1.25rem; margin-top:1.25rem; margin-bottom:1.25rem; border:1px solid #e9ecef; border-left-width:.25rem; border-radius:.25rem }
.bd-callout h4 { margin-bottom: 1.25rem }
.bd-callout p:last-child { margin-bottom:0 }
.bd-callout code { border-radius:.25rem }
.bd-callout+.bd-callout { margin-top:-.25rem }
.bd-callout-info { border-left-color:#5bc0de }
.bd-callout-warning { border-left-color:#f0ad4e }
.bd-callout-danger { border-left-color:#d9534f }

/* footer */
footer a { color: white; font-weight: bold; text-decoration: none; }
footer a:hover { color: white; text-decoration: underline; }

footer {
    box-sizing: border-box;
    padding: 20px;
    margin-top: 5vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color:#001028;
    width:100%;
    height:auto;
}

.banner-contourF {
    width: 100vw;
}

.bannerF {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.banner-contentF {
    display: flex;
    animation: move 26s linear infinite;
}

.banner-contentF:hover{
    animation-play-state:paused;
}



@keyframes move {
    from {
        transform: translateX(50%);
    }
    to {
        transform: translateX(-100%);
    }
}

.banner-contentF img {
    width: auto;
    height: 13vh;
    margin-right: 6.28vw;
    cursor:pointer;
    transition: transform 0.2s;
    z-index: 126;
}

.banner-contentF a:hover img {
    transform: scale(1.15);
    overflow:visible;
    z-index:10;
}


footer .req  p { color: white; display: relative; text-align: center; }
footer .req a { color: white; font-weight: bold; text-decoration: none; }
footer .req a:hover { color: white; text-decoration: underline; }


#Igemname{
    margin-bottom: 1.5vh;
    text-align:center;
    color:antiquewhite !important;
    font-family: 'Kanit', sans-serif !important;
    font-weight: 1rem !important;
    font-size: 2.6rem !important;
    margin-top: 2vh;
      
}
#uni{
    margin-bottom:3vh;
    font-size:1rem !important;
    text-align:center;
    font-family: 'Amiko', sans-serif !important;
    color:antiquewhite;

}
#email{
    margin-bottom:3vh;
    font-size:1rem;
    text-align:center;
    font-family: 'Amiko', sans-serif;
    color:antiquewhite;
}

.social-media {
    margin-bottom: 1.5rem !important;
    text-align:center;
    margin-right:0.1rem;
    font-size:1rem;
}

.social-media img{
    height:5vh;
    width:5vh;
    box-sizing:border-box;
    vertical-align:middle;  
}

.social-media-icons {
    display: flex !important;
    flex-direction: row !important;
    margin-left: 65px !important;
}
    
.social-media-buttons {
    width: 50px ; 
    height: 50px ; 
    border-radius: 50% ; 
    background-color: #e5d49c ; 
    margin-right: 20px ; 
    display: flex ;
    justify-content: center ;
    align-items: center ;
    transition: box-shadow 0.3s, background-color 0.3s ; 
}

.social-media-buttons:hover {
    background-color: #d4af37 ;
    box-shadow: 0 0 15px #e5d49c ; 
}
    
.social-media-buttons i,
.social-media-buttons svg {
    font-size: 24px ; 
}

.video-container {
    position: relative;
    width: 100%;
    height: 95vh; /* Full screen */
    
    border: none;
  }
  
  /* Optional: Ensure the video is properly centered and above the background */
  .video-container video {
    position: relative;
    z-index: 1; /* Ensure the video is above the background */
  }