html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    color: #fff;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

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

.container {
    z-index: 1;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

header p {
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 1.5rem; /* Add space below "Software Developer" */
}

#contact {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.linkedin-icon {
    margin-bottom: 1rem; /* Space between icon and email */
}

.email-link {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #aaa;
}

.fab.fa-linkedin {
    font-size: 2.5rem; /* Slightly larger icon */
    color: #fff;
    transition: color 0.3s ease;
}

.fab.fa-linkedin:hover {
    color: #aaa;
}