* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}

.container {
    /* Background image */
    background-image: url("images/1.jpg");
    background-size: cover;
    background-position: center;
    height: 100%;
    display: flex;
    justify-content: flex-start; /* Aligns content to the left horizontally */
    align-items: center;
    color: white;
    position: relative;
    padding: 0 50px; /* Add padding to the sides */
}

.logo {
    width: 90px;
    position: absolute;
    top: 40px;
    right: 40px; /* Align logo to the top-right */
}

.text-content {
    text-align: left; /* Align text to the left */
    max-width: 600px;
}

.company-name {
    font-size: 5em;
    font-weight: bold;
    margin-bottom: 20px;
    margin-left: 100px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.company-text {
    font-size: 1.1em;
    font-family: 'Space Mono', monospace;
    margin-top: 0; /* Ensure no extra space between the name and text */
    margin-left: 100px;
}

/* Media Queries for responsiveness */

/* For tablets and smaller screens */
@media (max-width: 768px) {
    .container {
        padding: 0 30px;
        flex-direction: column; /* Stack content vertically */
        text-align: center;
        justify-content: center;
    }

    .logo {
        top: 10px;
        right: 10px;
        width: 100px; /* Adjust logo size */
    }

    .company-name {
        font-size: 2.5em; /* Adjust font size for smaller screens */
    }

    .company-text {
        font-size: 1.1em;
    }
}

/* For mobile devices */
@media (max-width: 480px) {
    .container {
        padding: 0 20px;
        text-align: center;
    }

    .logo {
        width: 80px; /* Smaller logo for mobile */
    }

    .company-name {
        font-size: 2em; /* Smaller font size for mobile */
    }

    .company-text {
        font-size: 1em;
    }
}