body {
    margin: 0;
    padding: 2rem 1rem;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    background-color: #1e1e1e;
    color: #ffffff;
}
h1 {
    margin-bottom: 2rem; /* Added space between name and icons */
    font-size: 4rem; /* Increased font size */
    color: #ffffff; /* Changed name color to white */
}
h1 a {
    color: #ffffff; /* Set link color to white */
    text-decoration: none; /* Remove default underline */
}
.container {
    margin: 0.1rem;
    padding: 0.1rem; 
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    justify-content: space-between;
}

.socials{
		margin-top: auto;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin: 1rem;
    padding: 1rem;
}
.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    transition: transform 0.2s ease-in-out;
}

.social-icons img {
    width: 4rem;  /* Increased icon size */
    height: 4rem; /* Increased icon size */
    opacity: 0.7; /* Slightly more visible */
}

.social-icons img:hover {
    opacity: 1.0; /* Slightly more visible */
}

.social-icons a:hover {
    transform: translateY(-0.25rem);
}

.projects {
		margin-top: 3rem;
}

.projects h2 {
    margin: 0 0 1rem 0;
    font-size: 2rem;
    color: #ffffff;  /* White text */
    font-weight: 600;
}

.projects a{
	color: #ffffff9f
}

.project-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.project-card {
    flex: 0 1 20rem;  /* Don't grow, can shrink, base width 20rem */
    background: #2a2a3c;
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    border: 1px solid #3d3d56;
    padding: 2rem;
}

.project-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: #6e6ea6;  /* Lighter border on hover */
}

.project-card a {
    text-decoration: none;
    color: inherit;
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    margin: 0 0 1rem 0;
    font-size: 1.4rem;
    color: #ffffff;  /* White text */
    font-weight: 600;
}

.project-description {
    color: #b4b4d9;  /* Light purple-ish text */
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.project-links {
    display: flex;
    gap: 1rem;
}

.project-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.2s ease-in-out;
}

.project-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.project-link img {
    opacity: 0.8;
}

/* Optional: Add tags styling */
.project-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tag {
    background: #3d3d56;
    color: #b4b4d9;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    transition: background 0.2s ease-in-out;
}

.tag:hover {
    background: #4a4a6a;
}

/* Responsive adjustments */
@media (max-width: 48rem) {  /* 768px */
    .project-grid {
        grid-template-columns: 1fr;
    }
    
    .project-image {
        height: 10rem;
    }
    
    body {
        padding: 1rem;
    }
}

