body {
    background-color: #f5f5f0;
    color: #2a2a2a;
    font-family: "Sen", sans-serif;
}

.logo-container {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.animated-text-wrapper {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.animated-word-container {
    display: inline-block;
    text-align: left;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.animated-word {
    display: inline-block;
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
}

main {
    transition: all 0.3s ease-in-out;
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

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

.project-card {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(42, 42, 42, 0.1);
}

/* Social Media Icons */
.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.social-icon {
    width: 24px;
    height: 24px;
    fill: #2a2a2a;
    transition: fill 0.3s ease;
}

.social-icon:hover.linkedin {
    fill: #0077b5;
}

.social-icon:hover.twitter {
    fill: #1DA1F2;
}

.social-icon:hover.mastodon {
    fill: #6364FF;
}

.social-icon:hover.bluesky {
    fill: #0085ff;
}

.social-icon:hover.github {
    fill: #333333;
}
