.app__projects {
    background: var(--color-60);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding-top: 3rem;
}

.app__projects-head {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.app__projects-head h1 {
    font-size: 86px;
    text-transform: uppercase;
    color: var(--color-textHeading);
}

.app__projects-head p {
    font-size: 22px;
    line-height: 1.5em;
    width: 80%;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 1rem;
}

.app__projects-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 5rem ;
}

.app__projects-content-project {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5rem 0;
}

.app__projects-content-project img {
    width: 50%;
    height: auto;
}

.app__projects-content-project-info {
    margin-left: 8rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 500px;
}

.app__projects-content-project-info h2 {
    font-size: 38px;
    color: var(--color-textHeading);
}

.app__projects-content-project-info p {
    margin: 1rem 0;
    font-size: 20px;
    line-height: 1.5em;
    width: 100%;
    color: var(--color-text);
}

@media screen and (max-width: 1250px) {
    .app__projects-content-project {
        flex-direction: column;
        margin: 2rem 0 0 0;
    }

    .app__projects-content-project-info {
        margin: 3rem 0 3rem 0;
        width: 80%;
    }
}

@media screen and (max-width: 950px) {
    .app__projects-head h1 {
        font-size: 62px;
    }
    
    .app__projects-head p {
        font-size: 18px;
    }

    .app__projects-content-project-info h2 {
        font-size: 30px;
    }

    .app__projects-content-project-info p {
        font-size: 18px;
    }
}

@media screen and (max-width: 550px) {
    .app__projects-content {
        margin: 0;
    }

    .app__projects-content-project {
        width: 100%;
    }
    
    .app__projects-content-project img {
        height: 301px;
        width: 400px;
    }

    .app__projects-head {
        margin: 3rem 0 0 0 ;
    }

    .app__projects-head h1 {
        font-size: 40px;
        margin: 0;
    }
    
    .app__projects-head p {
        font-size: 16px;
        margin: 0 0 2rem 0;
    }

    .app__projects-content-project-info h2 {
        font-size: 28px;
    }

    .app__projects-content-project-info p {
        font-size: 16px;
        width: 100%;
    }
}

@media screen and (max-width: 440px) {
    .app__projects-content-project {
        margin: 0;
        text-align: center;
    }

    .app__projects-content-project img {
        height: 233px;
        width: 320px;
    }


}

@media screen and (max-width: 440px) {
    .app__projects-content-project {
        margin: 0;
    }

    .app__projects-content-project img {
        height: auto;
        width: 80%;
    }
}

@media screen and (max-width: 350px) {
    .app__projects-content-project-button {
        width: 200px;
    }
}



