.projects{
    box-shadow: 5px 5px 5px #bebebe, -5px -5px 5px #f5f5f5;
    background-color: rgb(246,246,244,255);
    width: 90%;
    height: auto;
    margin: auto auto;
    padding: 0 0 15px 0;
    margin-top: 60px;
    border-radius: 15px;
}
.projects .project_content{
    background-size: cover;
    background-repeat: no-repeat;
}

.projects h1{
    display: flex;
    justify-content: center;
    padding-top: 50px;
    font-weight: 600;
    font-size: 40px;
    position: relative;
    background: linear-gradient(135deg, #4682B4, #6A0DAD);
    color: white;
    padding: 20px;
    border-radius: 15px 15px 0 0;
}

.projects h1::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 30px;
    background: rgb(246,246,244,255);
    border-radius: 50% 50% 0 0;
}

.projects .projects_library{
    display: grid;
    grid-template-columns: 1fr 1fr ;
    width: 90%;
    gap: 80px;
    margin: auto auto;
    margin-top: 80px;
    margin-bottom: 60px;
}

.projects .projects_library .project{
    display: flex;
    justify-content: center;
    border: 3px solid black;
    height: auto;
    border-radius: 10px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
    padding-top: 30px;
}
.projects .projects_library .project:hover {
    transform: scale(1.05);
    box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.3);
}
.project img{
    width: 100%;
    height: auto;
    max-width: 400px; /* Ajuste conforme necessário */
    display: block;
    object-fit:scale-down;
    border-radius: 10px; /* Opcional, para bordas arredondadas */
}
.project{
    display: flex;
    flex-direction: column;
    text-align: center;
}
.project span{
    margin: 10px;
    
}
.project .title{
    font-weight: 600;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 19px;
    background: linear-gradient(135deg, #87CEFA, #8A2BE2);;
    color: #fff;
    border-radius: 10px;
    width: fit-content;
    padding: 5px 25px 5px 25px;
    margin: auto auto;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
}
.project .paragraph{
    font-weight: 600;
    font-size: 16px;
}
.project .icon img{
    width: 55px;
    height: auto;
    padding: 10px;
}
.projects img{
    margin: auto auto;
    height: 250px;
    width: auto;
    border-radius: 15px;
   
}