.aspTechIntro {
    width: 100%;
}
.headText {
    /* background-color: #ef4c23; */
    width: 80%;
    margin: auto;
    padding: 20px;
    text-align: center;
}
.headText > h2 {
    font-size: 36px;
}
.aspTechStackGrid {
    width: 15%;
    display: flex;
    flex-direction: column;
}
.aspTechStackGrid > button {
    padding: 15px 30px;
    border: none;
    font-size: 18px;
    font-weight: 600;
    border-left: 5px solid rgb(242, 238, 238);
    box-sizing: border-box;
    background-color: white;
}
.aspTechStackGrid > button:hover {
    border-left: 5px solid #ef4c23;
    background-color: #e8a594;
    color: black;
}
.aspStackMain {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: center;
    column-gap: 10px;
}
.aspStackAbout {
    width: 70%;
    background-color: #eae5e5;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.techContentDiv {
    width: 90%;
    height: fit-content;
}
.stackImage {
    width: 115px;
    height: 115px;
    margin: 5px auto;
}
.stackImage > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.headText span {
    color: #ef4c23;
}

@media only screen and (min-width: 0px) and (max-width: 1024px) {
    .headText {
        width: 90%;
        padding: 0px;
        margin-top: 5%;
    }
    .headText p {
        text-align: justify;
    }
    .aspTechStackGrid {
        width: 34%;
    }
    .aspStackMain {
        width: 100%;
    }
}
