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

body {
    background: transparent;
    padding: 2rem 1rem;
    position: relative;
    z-index: 1;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
    background: #0f172a;
}

h1 {
    font-family: 'Pacifico', cursive;
    font-size: 3rem;
    color: #00b4d8;
    text-align: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
}

h1:hover {
    transform: scale(1.05);
}

.inputForm {
    max-width: 500px;
    margin: 0 auto 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.inputForm input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #00b4d8;
    border-radius: 10px;
    background-color: #e0f7fa;
    color: #333;
    font-size: 1rem;
    transition: all 0.3s;
}

.inputForm input:focus {
    outline: none;
    border-color: #48cae4;
    box-shadow: 0 0 10px rgba(72, 202, 228, 0.4);
}

.card {
    max-width: 700px;
    background: white;
    border-radius: 20px;
    margin: auto;
    padding: 2rem;
    display: flex;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    gap: 2rem;
    animation: fadeIn 0.5s ease-in-out;
    position: relative;
    z-index: 2;
}

.avatar {
    border-radius: 50%;
    width: 160px;
    height: 160px;
    border: 5px solid #00b4d8;
    transition: transform 0.3s ease-in-out;
}

.avatar:hover {
    transform: scale(1.1);
}

.user-info {
    flex: 1;
    padding-top: 0.5rem;
}

.user-info h2 {
    margin: 0;
    color: #0077b6;
    font-size: 1.75rem;
}
.user-info h2 a{
    margin: 0;
    color: #0077b6;
    font-size: 1.75rem;
    text-decoration: none;
}
.user-info p {
    margin: 0.5rem 0;
    color: #555;
}

.user-info ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    justify-content: space-between;
    max-width: 400px;
}

.user-info li {
    font-size: 1rem;
    color: #333;
}

.user-info li strong {
    color: #0077b6;
    margin-left: 4px;
}

#repos {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.repo {
    background-color: #00b4d8;
    color: #fff;
    padding: 0.4rem 0.9rem;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.repo:hover {
    background-color: #0077b6;
    transform: scale(1.05);
}

@media (max-width: 600px) {
    .card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .user-info ul {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
}

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