.skill-set {
    width: 100%;
    text-align: center;
}

.skill-set > div {
    display: inline-block;
    margin: 0 auto;
    width: 100px;
    height: 80px;
}

.skill-set > div > img {
    color: var(--primary);
    margin: auto;
    display: block;
    pointer-events: none;
}

.skill-set > div > p {
    padding: 0;
    margin: 0;
}

.project-set {
    text-align: left;
}

.project-card {
    display: inline-block;
    margin-bottom: 50px;
}

.project-title {
    font-family: "EBG", sans-serif;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 15px;
}

.project-desc {
    max-width: 200px;
    font-size: 16px;
    margin-bottom: 10px;
    margin-left: auto; 
    margin-right: auto;
}

.project-lang {
    display: inline-block;
    font-size: 16px;
    margin-right: 10px;
}

.project-color, .project-name {
    vertical-align: middle;
    display: inline-block;
}

.project-color {
    position: relative;
    margin-left: 10px;
    margin-bottom: 10px;
}

.project-color:before {
    content: '';
    position: absolute;
    height: 10px;
    width: 10px;
    right: 3px;
    top: 20%;
    border-radius: 10px;
    background-color: currentColor;
}

@media (max-width: 650px) {
    .project-desc {
        max-width: 400px;
    }
}

@media (max-width: 390px) {
    .skill-set > div {
	height: 100px;
    }
}
