/*
Theme Name: Looping Video Theme
Theme URI: Your theme's URL
Description: A custom WordPress theme with a looping video background.
Author: Your Name
Author URI: Your website or profile URL
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

/* Add your custom CSS styles here */

#video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

#video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
}

.content {
    position: relative;
    z-index: 1;
    padding: 20px;
    color: #fff;
    text-align: center;
}
