@charset "utf-8";

/* Import Poppins font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background-color: #1c1c1c9d;
    text-align: center;
    color: white;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.content {
    position: relative;
    z-index: 2;
    padding: 10px;
}

/* Style for the image */
.content img {
    width: 150px; /* Set image width */
    height: auto; /* Maintain aspect ratio */
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #e30713;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 45px;
}

.button:hover {
    background-color: #c00611;
}

p, .paragraph {
    font-size: 18px;
    line-height: 25px;
    margin: 0 auto;
    padding: 0 10px;
    width: 50%; /* Default width for larger screens */
}

h1 {
    font-size: 4em;
    text-transform: uppercase;
    line-height: 60px;
}

span {
    color: #e30713;
}

a {
    color: #e30713;
    font-weight: bold;
}

/* Responsive styles for smaller screens */
@media (max-width: 768px) {
    p, .paragraph {
        width: 100%; /* Full width on mobile screens */
        font-size: 16px;
        line-height: 22px;
    }

    .button {
        padding: 8px 15px;
        font-size: 14px;
    }

    h1 {
        font-size: 2.5em;
        line-height: 40px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2em;
    }

    .button {
        padding: 7px 10px;
        font-size: 12px;
    }
}
