/* Add this CSS to your existing CSS file or create a new one */

/* Common styles for all screen sizes */
* {
    margin: 0;
    padding: 0;
}

canvas {
    display: block;
}

.container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    padding: 0 20px;
    max-width: 80%;
    text-align: center;
    z-index: 1;
    color: black;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
    background-image: url("texture.jpg");
    background-size: cover;
    background-blend-mode: overlay;
    color: #ffffff;
    height: 100vh;
    overflow: hidden;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 100vh;
    padding: 0 20px;
}

.content {
    max-width: 50%;
    text-align: left;
    padding: 20px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

h4 {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta {
    display: flex;
}

.button {
    padding: 12px 24px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-right: 20px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #0056b3;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Styles for screens smaller than 768px */
@media (max-width: 767px) {
    .hero-image {
        display: none;
    }

    .hero-text {
        text-align: left;
        padding-left: 20px;
    }

    .buttons {
        text-align: left;
        padding-left: 20px;
    }

    .container {
        flex-direction: column;
        justify-content: center;
    }

    .content {
        max-width: 100%;
        text-align: center;
    }
}