:root {
    --button-color: hsl(82, 60%, 28%);
    --head-color: hsl(0, 0%, 15%);
  }
  


section{
    width: 100%;
    background-color: #151515;
    position: relative;
}
.about-title {
    font-weight: 600;
    font-size: 65px;
    color: var(--button-color);
}
.two{
    text-align: end;
}

.container p{
    font-size: 18px;
}

section .container{
    padding: 3rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

section img{
    width: 100%;
}

section .container > *{
    margin: 2rem;
}

.imgContainer{
    transform: translateY(50px);
}
.text {
    font-size: 30px;
}

.shadow{
    position: absolute;
    bottom: 100%;
    height: 300px;
    width: 100%;
    left: 0;
    z-index: 20;
    background: linear-gradient(to top, #151515, transparent);
}


@media (max-width: 850px){
    section .container{
        grid-template-columns: 1fr;
    }
}

@media(max-width: 600px){
    .big-title{
        font-size: 3rem
    }

    .text{
        font-size: .8rem;
    }

    .about-title{
        font-size: 1.2rem;
    }
}