body{
    background-image: url(./bt.jpg);
}
.background-img1{
    background-image: url(./Thor.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 700px;
    width: 100%;
}
.background-img2{
    background-image: url(./Jon.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 700px;
}
.background-img3{
    background-image: url(./Joe.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 700px;
}
.background-img4{
    background-image: url(./rick.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 700px;
}
.background-img5{
    background-image: url(./Group.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 700px;
}
.background-img6{
    background-image: url(./MBB\ .jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 700px;
}

#text{
    color: white;
    font-family: "Bebas Neue", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 35px;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 1);
}

/* LOADER */
#preloader {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Loader Animation */
.loader {
    width: 50px;
    height: 50px;
    border: 5px solid #fff;
    border-top: 5px solid #e63946;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hide content initially */
#content {
    display: none;
}

@media (min-width:200px) and (max-width:600px) {
    .background-img1{
        background-position: center;
        background-repeat: no-repeat;
        /* background-size: cover; */
        height: 500px;
        width: 100%;
        
    }
    .background-img2{
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 500px;
        width: 100%;
    }
    .background-img3{
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 500px;
        width: 100%;
    }
    .background-img4{
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 500px;
        width: 100%;
    }
    .background-img5{
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 500px;
        width: 100%;
    }
    .background-img6{
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 500px;
        width: 100%;
    }
    #text{
        font-size: 15px;
    }
    
}