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

body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f2f5;
    color: #333;
    text-align: center;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #f0f2f5;
    z-index: -1;
}
.container {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.name {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    perspective: 500px;
}

.location {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location .fa-apple {
    margin-right: 8px;
    font-size: 1.3rem;
}

.social a {
    color: #333;
    font-size: 1.8rem;
    margin: 0 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social a:hover {
    color: #0077b5; /* LinkedIn color */
    transform: scale(1.2);
}

.social a:last-child:hover {
    color: #d44638; /* Email color */
}