body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    margin: 0;
    padding: 0;
}

.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-section {
    background: url('/img/programming-1920.png') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: bold;
    animation: fadeIn 2s ease-in-out;
}

.hero-section p {
    font-size: 1.5rem;
    animation: fadeIn 3s ease-in-out;
}

.about-section,
.projects-section,
.skills-section,
.contact-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    padding: 50px 0;
}

.skill-card,
.project-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.skill-card:hover,
.project-card:hover {
    transform: translateY(-10px);
}

.skill-card i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 20px;
}

.project-card img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}