/* General Styling */
body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, white, #00fdff);
    animation: gradient 5s infinite;
    color: #333333;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

html {
    scroll-behavior: smooth;
}

h1.title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

/* Projects Section */
.projects-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    padding: 2rem;
}

.project-card {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 1.5rem;
    width: 300px; /* Fixed width for each card */
    transition: transform 0.3s ease-in-out;
}

.project-card:hover {
    transform: scale(1.05);
}

.project-img {
    width: 100%;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.project-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.btn-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn {
    padding: 0.8rem 1.2rem;
    border-radius: 1.5rem;
    border: 1px solid #333;
    background: none;
    color: #333;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.btn:hover {
    background: #333;
    color: white;
}
