/* style.css */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #121212;
    color: #fff;
}

header {
    text-align: center;
    padding: 30px;
    background: #1f1f1f;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.project-card {
    background: #1f1f1f;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card img {
    width: 100%;
    border-radius: 10px;
}

.btn {
    display: inline-block;
    padding: 8px 16px;
    margin-top: 10px;
    background: #e50914;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background: #f40612;
}

footer {
    text-align: center;
    padding: 20px;
    background: #1f1f1f;
    font-size: 0.9rem;
    color: #aaa;
}

.back-home {
    margin: 20px;
    text-align: left;
}

.home-link {
    text-decoration: none;
    color: #ffffff; /* white text */
    background-color: #1e1e1e; /* dark background */
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    display: inline-block;
    margin-left=50%;
}

/* Hover effect */
.home-link:hover {
    background-color: #ff9800; /* orange highlight */
    color: #000;
    transform: translateY(-2px);
}

/* Make responsive for mobile */
@media (max-width: 600px) {
    .back-home {
        text-align: center;
        margin: 15px 0;
    }
    
    .home-link {
        font-size: 14px;
        padding: 8px 16px;
    }
}



