html{
    scroll-behavior:smooth
}

.tag-sort {
    display: flex;
    flex-direction: row;
    height: 45px;
    gap: 45px;

    margin-top: 40px;
    margin-bottom: 60px;
}

.tag {
    display: flex;
    font-family: 'karla', sans-serif;
    font-size: 24px;
    flex: 1;
    align-items: center;
    justify-content: center;


    background-color: #e4e4e4;
}

.tag:hover {
    text-decoration: underline;
}

.segment-title {
    font-family: 'karla', sans-serif;
    font-size: 62px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: -24px;
    margin-top: 72px;
}
.project-subtitle-category {
    font-style: italic;
    font-weight: 700;
}

@media screen and (max-width: 768px) {
    .tag {
        font-size: 18px;
    }
    .segment-title {
        font-size: 48px;
    }
}

@media screen and (max-width: 542px) {
    .tag {
        flex: auto;
        font-size: 18px;
        height: 42px;
    }
    .tag-sort {
        flex-direction: column;
        gap: 25px;
        height: auto;
    }
    .segment-title {
        font-size: 36px;
    }
}