
.about-section{
    margin: 1rem 2rem;
    padding:  2rem 1rem;
    text-align: center;
}

.about h1{
    margin:  1rem 0;
}

.about > *{
    color: var(--bg-black);
    text-align: center;
}

.about-content p{
    margin: 2rem 2rem;
    padding: 2rem;
    border: none;
    box-shadow:3px 3px 3px 2px rgba(0, 0, 0, 0.2);
    transition: all 200ms ease-in;
}

.about-content p:hover{
    cursor:pointer;
    border-bottom: var(--color-pink) 2px solid;
    box-shadow:4px 4px 4px 3px rgba(0, 0, 0, 0.2);
    

}

.readme{
    margin: 1rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: clamp(1rem,1.5rem,1.5rem);

}

.readme button{
    padding: 0.2rem 0.5rem;
    margin:1rem 0;
    background-color: Transparent;
    border: none;
    cursor:pointer;
    outline:none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition:  all 300ms ease-in;

}


.arrow-drop{
    display:block;
    user-select: none;
    font-size: clamp(1.5rem,2rem,2rem);
    background:none;
    transform: rotate(0deg);
    transition:  all 500ms ease-in;
}

.readme button:hover {
    color: var(--color-pink);
    transform: scale(1.1,1.1);

}

.readme button:hover .arrow-drop{
    /* transform: scale(1.5,1.5); */
    transform: rotate(360deg);

}




.fade-in{
    opacity: 0;
    transition: opacity 300ms ease-in;
}

.fade-in.appear{
    opacity: 1;
}


@media screen and (min-width:770px){
    .about-section{
        margin: 5rem 6rem;
        padding:  2rem 1rem;
    }

    .about-content{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .about-content p{
        width:22%;
        min-height: 30vh;
        display: flex;
        align-items: center;
    }  
}

@media(max-width:300px){
    
.about-section{
    margin: 1rem 1rem;
    padding:  1rem 1rem;
    text-align: center;
}


.about-content p{
    margin: 2rem 1rem;
    padding: 1rem;
    border: none;
    box-shadow:3px 3px 3px 2px rgba(0, 0, 0, 0.2);
    transition: all 200ms ease-in;
}
}