.text-btn{
    white-space: nowrap;
    color: rgb(24, 7, 119);
    font-size: 28px;
    font-weight: bold;
    background-color: rgb(255, 255, 255);
    padding: 2px;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: 180ms;
}
.text-btn:hover{
    background-color: rgb(179, 255, 156);
}

.tech-type{
    font-size: 18px;
    font-weight: 600;
    background-color: rgb(255, 255, 255);
    padding: 12px 16px;
    border-radius: 10px;
    width: fit-content;
}
.tech-type-list{
    display: flex;
    flex-wrap: wrap; 
    padding: 0 8px;
    gap: 8px;
    text-align: start; 
    width: fit-content;
    list-style-type: none;
}

@media only screen and (orientation: portrait) and (min-device-width: 340px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) {
    .tech-type-list{
        display: flex;
        flex-wrap: wrap; 
        padding: 0 8px;
        gap: 8px;
        text-align: start; 
        height: fit-content;
        list-style-type: none;
    }
}
@media (max-device-width: 340px) {
    .tech-type-list{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap; 
        padding: 0 8px;
        gap: 8px;
        text-align: start; 
        height: fit-content;
        list-style-type: none;
    }
}