#slack-section {
    background-color: var(--gray-40);
    margin: 0;
}

.slack {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--section-padding);
    position: relative;
    width: 100%;
}

.title-container {
    margin-top: 8px;
    padding-bottom: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.slack h2 {
    margin: 0;
    white-space: normal;
}

.slack h2:nth-child(2) {
    padding-top: 0px;
    padding-bottom: 4px;
    padding-left: 8px;
    padding-right: 8px;
    position: relative;
    border-radius: 40px;
    background-color: var(--tangerine-100);
}

.slack h2:nth-child(2)::after,
.finch-talk > .bubble::after {
    position: absolute;
    content: "";
    border-style: solid;
    transform: rotate(36deg);
}

.slack h2:nth-child(2)::after {
    bottom: -26px;
    right: 0;
    border-width: 12px 38px 15px 0;
    border-color: var(--tangerine-100) transparent transparent;
}

.buttons {
    display: flex;
    flex-direction: row;
    padding: 32px 0;
    gap: 16px;
}

.slack-button {
    display: flex;
    flex-direction: row;
    gap: 4px;
    color: white;
    background-color: var(--slack);
}

.finch-talk {
    margin-top: 50px;
    align-self: end;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-end;
    transform: scale(80%);
}

.finch-talk > .bubble {
    transform: rotate(-8deg);
    margin-bottom: 16px;
}

.finch-talk > .bubble::after {
    bottom: -16px;
    right: -10px;
    border-width: 16px 32px;
    border-color: var(--lilac-100) transparent transparent;
    z-index: 0;
}

.finch-talk > svg {
    height: 42px;
    width: auto;
}

@media only screen and (min-width: 600px) {
    .slack h2 {
        white-space: nowrap;
    }
    .finch-talk {
        transform: inherit;
    }
}

@media only screen and (min-width: 800px) {
    .title-container {
        flex-direction: row;
        gap: 8px;
        justify-content: center;
    }
}
