.project{
    display: flex;
    flex-direction: row;
    gap:2.5rem;
}

.project-img{
    width: 5rem;
    height: 5rem;
    transition: transform 0.5s ease;
}

.project-img:hover{
    transform: scale(1.1);
}

.project-content{
    display: flex;
    flex-direction: column;
}

.project-desc{
    margin: 0 0 1rem 0;
}

.skills{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.skill-bubble{
    color: white;
    padding: 0.25rem 0.6rem;
    border-radius: 1rem;
    font-size: 1rem;
    user-select: none;
}

.skill-bubble.python { background-color: #3572A5;}
.skill-bubble.julia {background-color: #9558B2;}
.skill-bubble.docker {background-color: #2496ED;}

#emote_gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(5rem, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.emote {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
    background-color: #f7f7f7;
    border-radius: 0.5rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.emote img {
    max-width: 100%;
    height: auto;
}

.emote:hover {
    transform: scale(1.2);
    background-color: var(--color-accent);
}

