#about {
    background-color: #1a4528;
}

#about .title-container {
    position: relative;
    text-align: center;
    line-height: 1;
}

#about .outline-text {
    font-size: 10rem;
    color: transparent;
    -webkit-text-stroke: 5px #40634b;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
}

#about .highlight-text {
    font-size: 4rem;
    color: #b6ff00;
    position: relative;
    z-index: 2;
    font-weight: bolder;
    -webkit-text-stroke: 5px #b6ff00;
    letter-spacing: 5px;
}

.highlight {
    color: #b6ff00;
}

.text-highlight {
    color: #b6ff00;
    font-weight: bold;
}

.projects {
    display: flex;
    /* gap: 20px; */
    margin-top: 30px;
}

.project {
    width: fit-content;

    text-align: center;
    color: #b6ff00;
}

.project .icon img {
    width: 150px;
    height: auto;
}

#right-about {
    padding-top: 4rem;
}

#about span {
    font-weight: bold;
}

#about .about-image img.img-fluid {
    max-width: 65% !important;
}

@media only screen and (max-width: 500px) {
    #about .row {
        justify-content: space-evenly;
    }

    #about .about-image {
        margin-top: 50px !important;
    }

    #about #right-about {
        padding-top: 1rem;
    }

    #about .icon {
        margin-top: 25px;
    }

    .project .icon img {
        width: 90px;
        height: auto;
    }
}

@media only screen and (max-width: 1200px) {

    .projects {
        flex-wrap: wrap;
        justify-content: space-evenly;
    }
}

@media only screen and (min-width: 501px) and (max-width: 770px) {
    #about .img-fluid {
        width: 50%;
    }

    #about .about-image {
        margin-top: 50px !important;
    }

    #about .icon {
        margin-top: 25px;
    }
}