
.about_me{
    width: 100vw;
    height: 600px;
    margin: auto;
    margin-top: 100px;
}

.about_me .left_side{
    width: 45%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url("/img/oya_photo.webp");
    background-size: cover; /* Ensures the image covers the entire area */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents tiling */

    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
    z-index: 2;
}

.about_me .right_side{
    width: 60%;
    height: 100%;
    top: 0;
    right: 0;
    background-color: #294551;
    color: white;

    z-index: 1;


}

.about_me .right_side .title{
    font-size: 2rem;
}

.mobile .about_me .right_side .title{
    width: 60%;
    text-align: center;
    font-size: 1.3rem;
}



.about_me .right_side p{
    width: 70%;
    font-size: 1.2rem;
    font-weight: 300;

    line-height: 1.2;
    letter-spacing: 1.5px;
}

.mobile .about_me .right_side p{
    width: 70%;
    font-size: 0.8rem;
    font-weight: 300;

    text-align: center;

    line-height: 1.2;
    letter-spacing: 1.5px;
}

.mobile .about_me .writing{
    margin-top: 30px;
}




.content_container{
    width: 80%;
    margin: auto;
    margin-top: 150px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px ;

    justify-items: center;
}

.content_element{
    border: 2px solid #294551;
    color: #294551;

    width: 100%;
    height: 400px;

    overflow: hidden;
    cursor: pointer;

    transition: background-color 0.3s ease; /* Smooth transition for background-color */
}

.content_element:hover{
    background-color: #294551;
    color: white;
}

.content_element .image_container{
    width: 100%;
    height: 70%;
}

.content_element .image_container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content_element .title{
    width: 100%;
    height: 30%;
    font-size: 2rem;
}


/* Whatsapp Communication */

.whatsapp_communication{
    bottom: 50px;
    right: 50px;
    width: 200px;
    height: 10px;
    background-color: #294551e2;
    border-radius: 10px;
    border: 2px solid white;
    padding: 20px;

    color: white;
    z-index: 20;

    cursor: pointer;
}

