.sec1Container{
    display: flex;
    width: 80%;
    flex-direction: column;
}
.sec1headText{
    text-align: center;
}

.textContainer{
    display: flex;
    width: 80%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 70vh;
}

.rowContainer{
    display: flex;
    flex-direction: row;
}

.webButton{
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.appButton{
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.docsButton{
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.internButton{
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.imgButton{
    width: 4rem;
    height: 4rem;
}
.imgButton{
    filter: invert(1) opacity(0.5) ;
    padding-bottom: 1rem;
    transition: 500ms;
}

.linkButton{
    cursor: pointer;
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-decoration: none;
}



.textButton{
    font-weight: bold;
    text-decoration: none;
    transition: 500ms;
    letter-spacing: 0.05rem;
}

.textInfo{
    letter-spacing: 0.05rem;
    color: #8D96A0;
}
.linkButton:hover .textButton{
    color: white;
    transform: translate(0rem, 1.25rem);
    transition: 400ms;
}



.linkButton:hover .imgButton{
    filter: invert(1) opacity(1);
    

    transform: scale(2);
    transition: 400ms;
}


#footer{
    position: absolute;

}

@media (max-width:700px){
    .textContainer{
        flex-direction: column;
    }
    .linkButton{
        margin-top: 3rem;
    }
    .textContainer{
        height: 100%;
        margin-top: 2rem;
        margin-bottom: 4rem;
    }
}