body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: #111;
    color: #fffb00;
    margin: 0; 
    padding: 0;
    box-sizing: border-box;
}



header {
    position: relative;
    text-align: center;
    padding: 30px 20px; 
    background-image: url('https://indianculturalforum.in/wp-content/uploads/2021/04/depositphotos_5390850-stock-photo-bloody-wall.jpg');
    background-size: cover; 
    background-position: center center; 
    background-attachment: fixed;
}



 h1 {font-family: "Special Elite", system-ui;
    font-weight: 400;
    font-style: normal; ;
    font-size: 4rem;
    margin-bottom: 10px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5); 
    border-radius: 5px;
    display: inline-block;
    color: #fffb00;
}


 p , a {font-family: "Special Elite", system-ui;
    font-weight: 200;
    font-style: normal;
    font-size: 2rem; 
    color: #ddd;
    background-color: rgba(0, 0, 0, 0.5); 
    padding: 5px 10px;
    border-radius: 5px;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100vh; 
    overflow: hidden;
    background-image: url('https://i0.wp.com/cdn.masterclassphotographers.com/wp-content/uploads/2021/08/23084431/Forense-1.jpg');
    background-position: center center;
    background-size: cover; 
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: -1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; position: center; margin-left:30%; margin-top: 10%; 
}

.back-button {
    display: inline-block;
    background-color: #333;
    color: #eeff00;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1rem;
    text-align: center;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.back-button:hover {
    background-color: #555;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.7);
}


@media screen and (max-width: 768px) {
    header h1 {
        font-size: 1.8rem;
    }

    header p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    header h1 {
        font-size: 1.5rem;
    }

    header p {
        font-size: 0.9rem;
    }

    .back-button {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}