@charset "UTF-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    font-family: 'Arial', sans-serif;
    background: url('images/tx-bg.png') no-repeat center center fixed; /* Add your background image here */
    background-size: cover; /* Ensure the background covers the entire body */
    color: #fff; /* White text for contrast */
    line-height: 1.6;
}

header {
    background-color: #000; /* Black background */
    color: #fff;
    padding: 20px 0;
    text-align: center;
    border-bottom: 2px solid #444; /* Added border color */
    padding-bottom: 30px; /* Extra space at the bottom */
}

header .logo img {
    max-width: 200px;
    width: 100%;
    height: auto;
}

main {
    flex: 1; /* Allow main content to grow and fill the space */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    text-align: center;
}

.intro {
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 8px;
}

.intro h1 {
    margin-bottom: 10px;
    font-size: 2em;
}

.intro p {
    font-size: 1.2em;
}

.content-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(26, 26, 26, 0.8);
    margin: 20px 0;
    padding: 20px;
    height: auto;
    width: 100%;
    max-width: 400px; /* Adjust the max-width as needed */
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.content-row:hover {
    transform: scale(1.02);
}

.placeholder-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 8px;
}

footer {
    background-color: rgba(26, 26, 26, 0.8); /* Semi-transparent dark grey */
    color: #fff;
    text-align: center;
    padding: 30px 0; /* Added spacing above and below footer text */
    margin-top: 20px;
    border-top: 2px solid #444; /* Added top border */
}

footer p {
    margin: 0;
}

@media (max-width: 768px) {
    header, footer {
        padding: 10px 0;
    }

    .content-row {
        padding: 15px;
        width: 80%; /* Adjust for responsiveness */
    }

    footer p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    header .logo img {
        max-width: 120px;
    }

    .content-row {
        padding: 10px;
        width: 100%; /* Adjust for responsiveness */
    }

    footer p {
        font-size: 12px;
    }
}
