.about{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;

    .container{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        max-width: 2000px;
    }

    .left{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        width: 60%;
        gap: 1rem;
        padding: 4rem;
    }

    h2{
        font-size: 4rem;
    }

    .right{
        padding-right: 8rem;
        img{
            border-radius: 10%;
            filter: sepia(5%) hue-rotate(16deg) brightness(80%) contrast(90%);
            height: 480px;
            width: 360px;
        }
    }

    .explore{
        bottom: 6vh;
        scale: 0.8;
    }
}

@media (max-width: 1200px){
    .about{
        .right{
            padding-right: 1rem;
        }
    }
}


@media (max-width: 800px){
    .about{
        h2{
            font-size: 1.8rem;
            text-align: left;
        }
        p{
            font-size: 0.8rem;
        }
        .right{
            img{
                height: 20rem;
                width: 15rem;
            }
        }
        .left{
            width: 60%;
        }
    }
}

@media (max-width: 600px){
    .about{
        .container{
            flex-direction: column;
        }
        h2{
            font-size: 1.8rem;
            text-align: left;
        }
        p{
            font-size: 0.8rem;
        }
        .right{
            img{
                height: 20rem;
                width: 15rem;
            }
        }
        .left{
            width: 100%;
        }
        .explore{
            display: none;
        }
    }
}