:root {
    --primary-color: #9A32CD;
    --secondary-color: #CCCCCC;
    --background-color: #000000;
    --text-color: #FFFFFF;
    --footer-text-color: #666666;
    --transition-duration: 0.3s;
    --font-family: 'Trebuchet MS', sans-serif;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    font-family: var(--font-family);
}

.container {
    width: 100%; /* Ensure it spans the full width of the viewport */
    max-width: 960px; /* Maintain a maximum width for larger screens */
    padding: 20px; /* Keep padding but ensure responsiveness */
    box-sizing: border-box; /* Include padding within the width */
    margin: 0 auto; /* Center the container */
    text-align: center;
}


.header-content {
    display: flex;
    flex-wrap: wrap; /* Allow content to wrap if necessary */
    justify-content: center; /* Center content */
    align-items: center;
    gap: 10px; /* Adjust spacing */
}

.logo {
    max-width: 100%; /* Ensure it scales with the parent container */
    height: auto; /* Maintain aspect ratio */
    display: block;
    margin: 0 auto; /* Center the logo */
}


.header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.section {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
}

.project-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.project-link {
    flex: 1;
    text-align: center;
    padding: 10px;
    margin: 0 10px;
    background-color: #252525; /* Darker background for default state */
    color: #FFFFFF; /* White text for contrast */
    border-radius: 5px;
    text-decoration: none;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transition */
}

.project-link:hover {
    background-color: var(--primary-color); /* Purple background on hover */
    color: #FFFFFF; /* Ensure text remains visible */
    transform: scale(1.1); /* Enlarge slightly */
}


@media (max-width: 1024px) { /* Covers tablets as well */
    .header-content {
        flex-direction: column;
    }

    .logo {
        max-width: 70%;
    }

.project-link {
    flex: 1 1 100%; /* Full width on mobile */
    margin: 5px 0; /* Adjust spacing */
}

}

