
@import url('./navbar.css');
@import url('./footer.css');

@import url('./strips/testimonial.css');
@import url('./strips/text_anim.css');
@import url('./strips/contact.css');
@import url('./strips/company.css');

@import url('./mobile_view/mobile_navbar.css');

/* html{
    overflow-x: hidden;
} */

body {
    margin: 0;
    padding: 0;
    font-family: "Roboto", serif;
    /* overflow-x: hidden; */
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

h1 {
    font-size: 5rem;
}

.video {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 1;
}


/* Footer */
footer {
    text-align: center;
    padding: 1em;
    background: #333;
    color: white;
}

.subheader {
    font-size: 1.6rem;
    font-weight: 300; /* Light, but readable */
}


@media (max-width: 768px) {

    h1 {
        font-size: 3rem;
    }

    .subheader {
        font-size: 1rem;
        font-weight: 300; /* Light, but readable */
    }
    

}