.project_section {
    text-align: center;
    margin-bottom: 20px;
    padding: 0 15px;
}

.project_section_header {
    font-size: 35px;
    font-weight: 700;
    margin-top: 7rem;
    margin-bottom: 5rem;
}

.project_buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.project_button {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    width: 100%;
    max-width: 400px;
    margin: 0 15px;
    transition: transform 0.2s ease;
    cursor: default;
}

@media (max-width:768px){
    .project_button {
       max-width: 80vw;
    }
}

.project_button:hover {
    transform: scale(1.05);
}

.project_button{
    padding-bottom: 3rem;
}

.project_button img {
    width: 100%;
    height: 300px;
}

.project_text {
    background-color: rgba(246, 246, 246, 255);
    color: black;
    width: 100%;
    height: 150px;
    padding: 50px 0;
    text-align: center;
    font-size: 25px;
    font-weight: 500;
}

.all_projects_button {
    padding: 10px 20px;
    font-size: 1.1em;
    color: white;
    background-color: var(--santco_color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.all_projects_button:hover {
    background-color: black;
}

/* For PC screens */
@media (min-width: 768px) {
    .project_buttons {
        flex-direction: row; 
        flex-wrap: wrap;
        justify-content: space-evenly; 
    }
}
