/* Base styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: url("CA.png") no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    text-align: center;
}

/* Transparent header */
header {
    background: rgba(0, 0, 0, 0.4);
    color: #FFD700;
    padding: 15px 20px;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    position: relative;
    z-index: 10;
}

/* Main container with 95% transparent flex box */
.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.05);
    width: 90%;
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Text and links glow slightly for readability */
.main-container p,
.main-container a {
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.main-container a:hover {
    color: #FFD700;
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.8);
}

/* Links */
a {
    color: #FFD700;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    header {
        font-size: 1.5rem;
        padding: 10px;
    }

    .main-container {
        width: 95%;
        margin: 20px auto;
        padding: 20px;
    }

    .main-container h2 {
        font-size: 1.4rem;
    }

    .main-container p {
        font-size: 1rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    header {
        font-size: 1.2rem;
        padding: 8px;
    }

    .main-container {
        width: 95%;
        padding: 15px;
        margin: 15px auto;
    }

    .main-container h2 {
        font-size: 1.2rem;
    }

    .main-container p {
        font-size: 0.9rem;
    }

    a {
        font-size: 0.9rem;
    }
}
