.factsAboutMe {

    display: flex;

    align-items: center;

    gap: 20px;

    background-color: #f3e7da;

    padding: 15px;

    border-radius: 10px;

    margin: 30px;

    flex-wrap: wrap;

    /* Allows elements to wrap onto a new line if needed */

}



.circle {

    width: 60px;

    height: 60px;

    background-color: #fcf8f2;

    color: rgb(156, 142, 133);

    font-size: 2rem;

    border: 3px solid #6c5656;

    font-weight: bold;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    text-align: center;

    margin-left: 120px;



    margin-top: 10px;



}



.fact-text {

    font-size: 1.2rem;

    color: #4c4c4c;

    flex: 1;

    /* Allow text to take remaining space */

}






    .circle {

        margin-left: 0;

        /* Remove the large margin */

        margin-right: 0;

        margin-top: 10px;

        /* Add some space above the circle */

    }



    .fact-text {

        font-size: 1rem;

        /* Slightly reduce font size */

        text-align: left;

        /* Align text to the left */

    }

}



@media (max-width: 768px) {
    .info {
        display: flex;
      	flex-direction: column;        
	    align-items: center;
        justify-content: space-between;        
	    flex-wrap: nowrap;         
	    gap: 15px;
    }

    .factsAboutMe {
        display: flex;
        flex-direction: row; /* Ensure row layout */
        align-items: center; 
        gap: 10px;
        width: auto; /* Prevent full width */
    }

    .circle {
        width: 60px;
        height: 60px;
        flex-shrink: 0; /* Prevent shrinking */
        margin: 0; /* Remove weird spacing */
    }

    .aboutText {
        text-align: left; /* Align text */
        flex-grow: 1; /* Allow it to take space */
    }
}

