@charset "UTF-8";

#estudos{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-left: 20px;
    margin-right: 20px;
    columns: 2;
    height: fit-content;
}


#img3{
    width: 100%;
    max-width: auto;
    height: auto;
    border-radius: 15px 15px 15px 15px;
}

#img3:hover{
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
}

#img3:not(:hover){
    transform: scale(1);
    transition: all 0.3s ease-in-out;
}