body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #fff;
    background-color: #111; /* Dark background */
}

.hero {
    background-image: url('https://cdn.pixabay.com/photo/2018/09/01/17/57/programming-3647303_960_720.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 4em;
    margin: 0;
}

.hero-content p {
    font-size: 1.5em;
}

.projects {
    background-color: #000;
    padding: 50px;
    text-align: center;
}

.projects h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.project {
    background-color: #222;
    border: 1px solid #444;
    padding: 15px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.project:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

.project img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #444;
    padding-bottom: 15px;
}

.project h3 {
    margin: 15px 0 0;
    color: #fff;
}

.project a {
    color: #fff;
    text-decoration: none;
    display: block;
}

.project a:hover {
    text-decoration: underline;
}

    