/* Reset */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comic Sans MS', 'Trebuchet MS', sans-serif; /* Cartoonish font */
    color: white;
    overflow: hidden;
    position: relative;
}

/* Blurred Background Image */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    overflow: hidden;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px); /* Apply blur */
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%; /* Video fills 80% of the screen width */
    height: 100%; /* Full height */
    object-fit: cover; /* Keeps the video proportional */
    z-index: -2;

    /* Apply a radial gradient mask */
    mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 32%, rgba(0, 0, 0, 0) 64%);
    -webkit-mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 32%, rgba(0, 0, 0, 0) 64%);

}

/* Hero Section for Text */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    color: white;
    z-index: 1; /* Ensure text appears above everything */
    padding: 20px;
}

.hero h2 {
    font-size: 9rem; /* Large and bold */
    text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.8), 7px 7px 0 #ff9f1c;
    margin-bottom: 20px;
}

.hero p {
    font-size: 6rem; /* Large and bold */
    margin-top: 20px;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.8), 5px 5px 0 #ff9f1c;
}

