.profile-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.5);
}

.tech-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.tech-icons {
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    flex-wrap: wrap;
}

.tech-icon {
    width: clamp(30px, 8vw, 40px);
    height: clamp(30px, 8vw, 40px);
    filter: grayscale(30%) opacity(90%);
    transition: all 0.3s ease;
}

.tech-icon:hover {
    filter: grayscale(0%) opacity(100%);
    transform: scale(1.3);
}

.small-text {
    max-width: 550px;
    display: flex;
    margin: 0 auto;
    flex-wrap: wrap;
}