.tech-stack {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-top: 8%;
    padding-bottom: 8%;
    padding-left: 8%;
}

.tech {
    padding: 5px;
    margin-bottom: 15px;
    max-width: max-content;
    margin-right: 15px;
    border-radius: 6px;
    background-color: rgba(110, 243, 165, 0.08);
    border: 1px solid rgba(110, 243, 165, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: 0.5s;
}

.tech-icon {
    background-color: transparent;
    filter: brightness(0) saturate(100%) invert(77%) sepia(28%) saturate(757%) hue-rotate(96deg) brightness(101%) contrast(96%);
}

.tech:hover {
    cursor: default;
    background-color: rgba(110, 243, 165, 0.18);
    box-shadow: 0px 0px 12px rgba(110, 243, 165, 0.35);
    border-color: rgba(110, 243, 165, 0.6);
}

.tech-label {
    color: var(--primary-green);
    background-color: transparent;
    font-size: 14px;
    padding-right: 15px;
    padding-left: 10px;
}

#tech-stack-text {
    color: white;
    width: 400px;
    line-height: 20px;
    font-size: 12px;
}

.stack-illustration {
    padding-left: 5%;
}

.label-stack {
    font-size: 10px;
    color: var(--text-light);
}

.tech-row {
    display: flex;
    flex-wrap: wrap;
}