#works {
    background-color: #15351F;
}

#works .title-container {
    position: relative;
    text-align: center;
    line-height: 1;
}

#works .outline-text {
    font-size: 10rem;
    /* Adjust as needed to make the word large */
    color: transparent;
    -webkit-text-stroke: 5px #40634b;
    /* Dark green-grey color for the outline */
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.5;
    /* Light opacity for a subtle effect */
    z-index: 1;
    pointer-events: none;
    /* So it doesn't overlap clickable items */
}

#works .highlight-text {
    font-size: 4rem;
    /* Smaller size to fit in front of "ABOUT" */
    color: #b6ff00;
    /* Bright green color */
    position: relative;
    z-index: 2;
    font-weight: bolder;
    -webkit-text-stroke: 5px #b6ff00;
    letter-spacing: 5px;
}

#works .box {
    margin: 10px !important;
    display: flex;
    align-items: center;
    width: fit-content;
    height: auto;
    background-color: #141900;
    border-radius: 24px;
    padding: 15px 10px;
}

#works .text-title {
    font-size: 1.5em;
    color: #96FF00;
    font-weight: bold;
    /* -webkit-text-stroke: 2px #96FF00; */
}

#works .text-year {
    font-size: 1.3em;
    color: #fff;
    margin-bottom: 0;
}

#works .col-3 {
    display: flex;
    justify-content: center;
}

#works .img-icon {
    width: 100px;
    height: auto;
}

#works .text-desc {
    font-size: 1em;
    font-weight: 200;
    color: #fff;
}

@media only screen and (max-width: 500px) {
    #works .row {
        flex-direction: column;
    }

    #works .box {
        flex-direction: column;
    }

    #works .text-year {
        margin-top: 15px;
        font-size: 1em;
    }

    #works .text-title {
        font-size: 1em
    }
}

@media only screen and (max-width: 800px) {
    #works .row {
        flex-direction: column;
    }
}