#skills-images-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    row-gap: 10px;
    justify-items: center;
    width: 100%;
}

.image-wrapper {
    position: relative;
}

.image-wrapper::before{
    content: attr(data-logo);
    position: absolute;
    display:none;
    /* top: 0; */
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    width: max-content;
    /* height: 20px; */
    background-color: #fa4d23;
    padding: 5px;
    border-radius: 5px;
}

.image-wrapper:hover::before{
    display: block;
}

.tech-image {
    color: #4a1018;
    font-size: 80px;
}

.projects-container {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: flex-start;
    width: 100%;
    gap: 20px;
}

#projects-title {
    text-align: center;
}

.indivdual-project {
    display: flex;
    flex-direction: column;
    width: 325px;
    align-items: center;
    row-gap: 10px;
}

.project-image {
    width: 100%;
    height: 170px;
}

.technologies-wrapper {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: center; */
    align-items: center;
    flex-direction: column;
}

.tech-circle {
    font-size: 4px;
}

.project-text-wrapper {
    display: grid;
    /* grid-template-rows: 100px 50px; */
    row-gap: 10px;
    padding-top: 10px;
}

.project-button-github-wrapper, .project-button-live-wrapper {
    width: 90px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.project-button-github-wrapper {
    background: linear-gradient(#fa5a20, #f01e66);
}

.project-button-live-wrapper {
    border: 2px solid #fa5a20;
}

.project-button-live {
    text-decoration: none;
}

.project-button-github {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.project-button-github:hover {
    color: #4a1018;
}

.project-links {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
}

.project-text-wrapper > *  {
    text-align: center;
}

.indivual-technology-row {
    display: flex;
    align-items: center;
    /* border: 2px solid red; */
    height: 20px;
    column-gap: 5px;
}

.indivual-technology-row > p {
    font-size: 12px;
    color: #ee0979;
}

.project-tech-header {
    font-weight: 600;
}

.connection-form > div {
    width: 100%;
}

.message-text-area {
    width: 100%;
}

.connection-form-inputs {
    display: grid;
    gap: 10px;
    grid-template-rows: 50px 130px;
    grid-template-areas: 
    "input1 input2"
    "input3 input3";
    padding-bottom: 10px;
}

#name-input {
    grid-area: input1;
    border: 1px solid #fa5a20;
    padding: 10px;
}

#email-input {
    grid-area: input2;
    border: 1px solid #fa5a20;
    padding: 10px;
}

#message-input {
    grid-area: input3;
    border-color: #fa5a20;
    padding: 10px;
}

#name-input:focus, #email-input:focus, #message-input:focus {
    outline-color: #ee0979;
}

.connection-links {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 80px;
    padding-top: 10px;
    padding-bottom: 20px;
}

.connection-links > div {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 48%;
    padding: 10px;
}

.connection-links > div > a {
    color: white;
    text-decoration: none;
}

.connect-icon {
    font-size: 30px;
}

.connect-github {
    background-color: #fa5120;
}

.connect-linkedin {
    background-color: #F53A3E;
}

.connect-wellfound {
    background-color: #f01e66;
}

.connect-info {
    display: grid;
}