:root {
    --primary-color: #00b8d4;
}

.chips {
    flex-wrap: wrap;
    display: flex;
}

.chip {
    background-color: var(--primary-color);
    padding: 4px 8px;
    margin: 1px;
    color: white;
    border: 1px solid var(--primary-color);
    border-radius: 16px;
    font-size: 0.9rem;
}

.portfolio-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.portfolio-item-image {
    width: 20%;
    margin-bottom: auto;
    margin-top: auto;
}

.portfolio-item-description {
    width: 75%;
    margin-bottom: auto;
    margin-top: auto;

}