body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-image: url('../images/tower.jpeg');
    background-size: cover; /* Fixed size to maintain the image dimensions */
    background-attachment: fixed;
    background-position: right ;
    background-repeat: no-repeat;
    color: white;
}

/* Move the background to the left on smaller screens */
@media (max-width: 1564px) {
    body, html {
        background-size: 1564px; /* Move left as screen shrinks */
    }
}
@media (max-width: 768px) {

    body, html {
        background-size: 1564px; /* Move left as screen shrinks */
    }
}

.container {
    max-width: 800px; /* Adjust this value to narrow the content width */
    margin: auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.0); /* transparent background looked better */
}

header {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 20px 0;
    text-align: center;
    font-size: 2em;
    text-shadow: 2px 2px 5px #000;
}

.header .logo {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
    box-shadow: 2px 2px 5px #000;
}

.header h1 {
    margin: 0;
    margin-bottom: 10px;
}

.contact-button {
    background-color: rgba(255, 255, 255, 0.0); 
    color: whitesmoke;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 15px;
    box-shadow: 2px 2px 5px #000;
    font-weight: bold;
    font-size: .8em;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: rgba(255, 255, 255, 0.7);
}


footer {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 20px 0;
    text-align: center;
    text-shadow: 2px 2px 5px #000;
}

footer p {
    margin: 5px 0;
}

.hero {
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 2px 2px 5px #000;
}

.hero h2 {
    font-size: 3em;
    text-align: center;
}
.hero p {
    color: white;
    text-shadow: 2px 2px 5px #000;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 40px; /* Ensure space between sections */
}

.content h2 {
    color: white;
    font-size: 3em;
    text-shadow: 2px 2px 5px #000;
    text-align: center;
    margin-top: 40px; /* Space above the heading */
}

.content p {
    color: white;
    text-shadow: 2px 2px 5px #000;
    line-height: 1.6;
    text-align: center;
}

.content {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.0);
   
}

.containerb {
    max-width: 800px; /* Adjust this value to narrow the content width */
    margin: auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.0); /* transparent background looked better */
}

.container img {
    display: block;
    margin: 40px auto;
    max-width: 30%;
    height: auto;
}

/* Individual image controls */
.image-beseen {
    max-width: 40%; /* Adjust the size as needed */
    filter: brightness(0) saturate(100%) invert(32%) sepia(100%) saturate(7457%) hue-rotate(-15deg) brightness(70%) contrast(105%);
}

.image-sales {
    max-width: 50%; /* Adjust the size as needed */
    filter: invert(90%);
}

.image-moneystack {
    max-width: 10%; /* Adjust the size as needed */
    filter: brightness(0) saturate(100%) invert(44%) sepia(94%) saturate(363%) hue-rotate(65deg) brightness(102%) contrast(101%);
}

.image-staticads {
    max-width: 100%; /* Adjust the size as needed */
    filter: brightness(0) saturate(100%) invert(32%) sepia(100%) saturate(3457%) hue-rotate(195deg) brightness(50%) contrast(105%);
}
