.profile {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 20px;

    .profile_pic
    {   
        border: 2px #894B92 solid;
        background-color: #790e87;
        padding: 10px;
        height: auto;
        width: auto;
        border-radius: 10px;
        
        img {
            width: 100%;
            height: 100%;
            border-radius: 10px;
        }
    }

    .profile_info {
        border: 2px #894B92 solid;
        background-color: #790e87;
        overflow: hidden;
        height: auto;
        width: auto;
        border-radius: 10px;
        text-align: center;
        align-content: center;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 100%;
        margin: 0;
        

        .identity {
            margin: 0;
            padding: 0;
            border-right: 2px #894B92 solid;
            justify-content: space-between;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 0;
            
            & > li {
                
                display: grid;
                grid-template-columns: 1fr 1fr;
                padding: 20px;
                height: 100%;
                align-items: center;
                &:nth-child(odd)
                {
                    background-color: #401951;
                }

                & > * {
                    text-align: left;
                    width: fit-content;
                }
            }
        }
        .hobbies {
            width: 100%;
            text-align: center;
            display: grid;
            grid-template-rows: 1fr 2fr;

            .title {
                width: 100%;
                background-color: #401951;
                align-content: center;
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .text_hobbies {
                
                align-items: center;
                display: grid;
                grid-template-rows: 1fr 1fr 1fr 1fr;
                grid-template-columns: 1fr 1fr;
                
                li {
                    width: fit-content;
                }

                div {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    img {
                        max-width: 1rem;
                        max-height: 1rem;
                    }

                    
                }

                li:has(  > .pomni)
                {
                    height: 100%;
                    grid-row-end: span 2;
                    width: 80%;
                    opacity: 30%; 
                    
                    .pomni {
                        
                        width: 100%;
                        height: 100%;
                        
                        img {
                          
                           
                            max-height: 5.5rem;
                            max-width: 100%;
                            object-fit: fill;
                            width: 100%;
                            

                        }
                    }
                }
            }
        }
    }
}

.hide {
    grid-template-rows: 0fr;
	transition: grid-template-rows 0.5s ease;
	display: grid;
}

.inner {
    
    border-radius: 20px;
    justify-self: center;
	overflow: hidden;
}

.show {
    
   	grid-template-rows: 1fr !important;
	transition: grid-template-rows 0.5s ease;
	display: grid;
}