.projects-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px;
}

.project-card {
    display: flex;
    flex-direction: column;
    align-items: center;      /* Centers horizontally */
    text-align: center;       /* Centers text */
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
}

.project-frame {
    width: 380px;
    height: 280px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.flip_coin_logo {
     width: 100%;
    height: 100%;
    object-fit: contain;
}

.project-card h3 {
    margin-top: 15px;
    font-size: 1.4rem;
    font-weight: 600;
}