.about-container {
    width: 100%;
    height: 100%;
    /* background-color: #7C507C; */
    position: absolute;
    /* visibility: hidden; */
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;
    /* flex-direction: column; */
}

.about-info-container {
    width: 100%;
    max-width: 100vmax;
    height: 100%;
    /* background-color: #583958; */
    /* background-color: rgba(88, 57, 88, 0.3); */
    /* opacity: 0.3; */
    /* border-radius: 50px; */
    color: white;
    padding: 0 20px;
    margin-top: 200px;
    overflow: scroll;

    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 2fr 1fr 2fr;
    row-gap: 20px;


}

.about_button {
    margin:20px 0;
    justify-self: center;
}


h1 {
    /* position: relative; */
    text-decoration: none;
    font-weight: 600;
    /* color: blue; */
    transition: all .35s ease;
}

h1::before {
    content: ""; 
    position: absolute;
    width: 100%;
    height: 6px;
    bottom: -5px;
    left: 0;
    background-color: #6a4c93;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s; 
    transition: all 0.3s ease-in-out 0s; 
} 

h1:hover {
    color: #6a4c93;
    font-weight: 600;
}

h1:hover::before {
        visibility: visible;
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
}   

.about_info {
    grid-column: 1/2;
    grid-row: 1/2;
    /* background-color: blue; */
    padding: 15px;
    background-color: rgba(88, 57, 88, 0.3);
    border-radius: 15px;
}

.about_info p {
    font-size: 3.6vw;
    line-height: 30px;
}

.about_skills {
    grid-column: 1/2;
    grid-row: 2/3;
    width: 90vmin;
    padding: 15px;
    /* max-width: 100vmax; */
    background-color: rgba(88, 57, 88, 0.3);
    border-radius: 15px;
}

.about_photo {
    grid-column: 1/2;
    grid-row: 3/4;
    /* width: 90vmin; */
    border-radius: 15px;
}

@media (min-width:768px){
    .about_info {
        /* background-color: blue; */
        padding: 20px;
    }

    .about_info p {
        font-size: 3vw;
        line-height: 40px;
    }

    .about_skills {
        grid-column: 1/2;
        grid-row: 2/3;
        width: 95vmin;
        padding: 20px;
        /* max-width: 100vmax; */
        background-color: rgba(88, 57, 88, 0.3);
        border-radius: 15px;
    }

    .about_photo {
        grid-column: 1/2;
        grid-row: 3/4;
        width: 70vmin;
        border-radius: 15px;

        justify-self: center;
    }
}

@media (min-width:1024px) {
    .about-info-container {
        width: 88%;
        /* max-width: 100vmax; */
        height: 75%;
        /* background-color: #583958; */
        /* background-color: rgba(88, 57, 88, 0.3); */
        /* opacity: 0.3; */
        /* border-radius: 50px; */
        color: white;
        /* padding: 0 20px; */
        margin-top: 90px;
        overflow: hidden;
    
        display: grid;
        grid-template-columns: 2fr 1fr;
        grid-template-rows: 2fr 1fr;
        gap: 20px;
    }

    .about_info {
        grid-column: 1/2;
        grid-row: 1/2;
        /* background-color: blue; */
        padding: 12px;
        background-color: rgba(88, 57, 88, 0.3);
        border-radius: 15px;
    }
    
    .about_info p {
        font-size: 1.8vw;
        line-height: 40px;
    }

    .about_skills {
        grid-column: 1/2;
        grid-row: 2/3;
        width: 100%;
        padding: 20px;
        /* max-width: 100vmax; */
        background-color: rgba(88, 57, 88, 0.3);
        border-radius: 15px;
    }

    .about_skills img {
        width: 70%;
    }

    .about_photo {
        grid-column: 2/3;
        grid-row: 1/2;
        width: 100%;
        border-radius: 15px;

        justify-self: center;
    }

    .about_photo img {
        border-radius: 15px;
    }

    .about_button {
        grid-column: 2/3;
        grid-row: 2/3;
        margin:20px 0;
        justify-self: center;
        align-self: center;
    }
}

@media (min-width:1200px) {
    .about-info-container {
        margin-top: 70px;
        height: 80%;
        overflow: scroll;
        width: 90%;
    }

    .about_info p {
        font-size: 2.1vw;
        line-height: 40px;
    }
}

@media (min-width:1440px) {
    .about-info-container {
        width: 65%;
        /* max-width: 100vmax; */
        height: 80%;
        /* background-color: #583958; */
        /* background-color: rgba(88, 57, 88, 0.3);  */
        /* opacity: 0.3; */
        /* border-radius: 50px; */
        color: white;
        /* padding: 0 20px; */
        /* margin-top: 90px; */
        overflow: hidden;
    
    }

    .deep_container {
        width: 100vw;
        height: 100vh;
        background-color: pink;
        opacity: 50%;
    }

    .about_info p {
        font-size: 1.3rem;
        line-height: 40px;
    }
}

@media (min-width:1919px) {

       .about-info-container {
        width: 70%;
        /* max-width: 100vmax; */
        height: 75%;
        /* background-color: #583958; */
        /* background-color: rgba(88, 57, 88, 0.3);  */
        /* opacity: 0.3; */
        /* border-radius: 50px; */
        color: white;
        /* padding: 0 20px; */
        margin-top: 90px;
        overflow: scroll;
    
        display: grid;
        grid-template-columns: 2fr 1fr;
        grid-template-rows: 2fr 1fr;
        gap: 20px;
    }

    .about_info p {
        font-size: 1.3vw;
        line-height: 70px;
    }
}