@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #1e1b29;
    color: #e5e5e5;
    padding: 20px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background: rgba(30, 27, 41, 0.9);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    color: #ededed;
    font-size: 25px;
    text-decoration: none;
    font-weight: 600;
    animation: fadeIn 1s ease-in-out;
}

.navbar {
    display: flex;
    align-items: center;
}

.navbar a {
    color: #d6d6ff;
    text-decoration: none;
    margin-left: 35px;
    font-size: 18px;
    transition: 0.3s;
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out forwards;
}

.navbar a:hover,
.navbar a.active {
    color: #a374ff;
}

.projects-section {
    padding: 120px 10%;
}

h1 {
    text-align: center;
    color: #a374ff;
    margin-bottom: 50px;
    font-size: 36px;
    animation: slideDown 1s ease-in-out;
}

.person-projects {
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-in-out forwards;
}

h2 {
    color: #d6d6ff;
    margin-bottom: 20px;
    font-size: 28px;
    animation: fadeInUp 1s ease-in-out forwards;
}

.project-card {
    background-color: #2c2a3d;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease forwards;
}

.project-card h3 {
    color: #7303fc;
    margin-bottom: 10px;
    font-size: 24px;
}

.project-card p {
    margin-bottom: 15px;
    line-height: 1.5;
}

.project-link {
    color: #a374ff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.project-link:hover {
    color: #ffffff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
