

.about{
    display: flex;
    min-height: 70vh;
    width: auto;
    background-image: linear-gradient(to left, #ffd700, #ff5e00);
    color: #fff;
    text-shadow: 0px 0px 12px #aaa;
    text-align: center;
    justify-self: center;
    justify-content: space-between;
}

.about .about_img{
    width: 30%;
    height: auto;
    display: flex;
}

.about .about_img img{
    width: 80%;
    height: auto;
    object-fit: fill;
    border-radius: 100%;
    margin: 100px;
}

.about .about_content {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
}

.about .about_content #about_title, .about .about_content #about_text{
    opacity: 0;
}

@media screen and (max-width: 1023px) {
    .about .about_img{
        justify-content: center;
        margin: 0px 24px;
    }

    .about .about_img img {
        width: 100%;
        height: auto;
        object-fit: fill;
    }

    .about .about_content {
        padding: 40px 24px;
    }
}

@media screen and (max-width: 767px) {
    .about .about_content{
        width: 100%;
    }

    .about .about_img{
        width: 50%;
        margin: 0px auto;
    }

    .about .about_img img {
        margin: 100px 0px 0px;
    }

    .about{
        flex-direction: column;
    }
}