.container {
    max-width: 75rem;
    margin: 0 auto;
    padding: 1.25rem;
    overflow-x: hidden;
}

.project-header {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    margin-top: 0;
    color: #333;
    text-transform: uppercase;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(18.75rem, 1fr));
    gap: 1.875rem;
}

@media (max-width: 48rem) {
    .project-grid {
        grid-template-columns: 1fr;
    }

    .project-header {
        font-size: 1.5rem;
    }
    
    .project-card-actions {
        flex-direction: column;
    }

    .container {
        /* padding: 0.3125rem; 5px */
    }
}