body{
    background-color: #000000;
}


.Hero {
    position: relative; /* Required for absolute children */
    margin-top: 80px;
    max-height: 560px;
    width: 100vw;
    max-width: 1920px;
    aspect-ratio: 16 / 4.66; 
    overflow: hidden; /* Prevent content from escaping */
}

.layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* For images to scale properly */
}

.posterBG {
    z-index: 0;
}

.BGBlur {
    background: rgba(47, 47, 47, 0.2); /* Required for blur effect */
    backdrop-filter: blur(10px);
    z-index: 1;
}

.posterOverlay {
    z-index: 2;
}

.gifSection{
    
    /* padding: 0 150px; */
    display: flex;
    margin: 75px 0 100px 0; 
    /* width: 100vw; */
    max-width: 1920px;
    width: 80%;
    justify-self: center;
    /* align-self: center; */
    justify-content: center;
}

.posterTitleH1{
    color: white;
    font-family: 'OpnSnsHbrw';
    text-align: center;
    font-size: 4rem;
    font-weight: 400;
    white-space: nowrap;
    /* margin-bottom: 2%; */
    margin-top: 10%;
    
    /* margin: 10% auto; */
}

.gifSectionTightWidth{
    padding: 0 20%;
    display: none;
    /* display: flex;
    flex-direction: column; */
    margin: 3% 0;
    /* width: 100vw; */
    max-width: 1920px;
    /* width: 80%; */
    align-self: center;
    justify-content: center;
}
.horizontalGifContainer{
    display: flex;
    margin: 7% 3%;
    justify-content: center;
}

.GifTxtContainer{
    /* max-width: 500px; */
    padding: 0 5%;
    /* margin-top: 5%; */
}

.underTitle{
    color: white;
    font-family: 'OpnSnsHbrw';
    text-align: center;
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 10%;
}
.gifWrapper {
    position: relative;
    display: inline-block;
    width: fit-content;
    height: fit-content;
    z-index: 0;
}

.IGif::before {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    width: 115%;
    height: 115%;
    background: rgba(0, 183, 255, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    filter: blur(50px);
}

.IIGif::before {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    width: 115%;
    height: 115%;
    background: rgba(200, 0, 255, 0.492);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    filter: blur(50px);
}

.introGif{
    max-height: 700px;
    height: 80vh;
    width: auto;
    border: 3px solid rgb(103, 103, 103);
    border-radius: 25px;
} 

.BttnImg{
    width: 42px;
    height: 31px;
    align-self: center;
    margin: 0 15px 0 0;
}

.linkButtons{
    justify-content: center;
    display: flex;
    margin-top: 10%;
}

.Bttn_Img_Txt{
    margin: 0 10%;
    display: flex;
    text-decoration: none;
    padding: 0 15px;
    border: 2px solid rgb(103, 103, 103);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.Bttn_Img_Txt:hover{
    background: #5656568a;
}

.BttnTitle{
    color: white;
    font-family: 'OpnSnsHbrw';
    font-size: 1rem;
    font-weight: 500;
    margin-top: -10px;
}


.BttnAddtionalText{
    color: white;
    font-family: 'OpnSnsHbrw';
    font-size: 0.85rem;
    font-weight: 300;
    white-space: nowrap;
    /* margin-top: 10%; */
}


ul{
    padding-left: 40px !important;
    gap: 10px;
    list-style: disc; /* keeps bullet points */
}



@media (max-width:1220px){
        .gifSection{
        display: none;
    }
    
    .gifSectionTightWidth{
        display: flex;
        flex-direction: column; 
    }

    .gifWrapper{
        margin: 0 7%;
    }
}