/* Basic styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
}

header {
    text-align: center;
    background-color: #333;
    color: white;
    padding: 20px 0;
}

h1 {
    margin: 0;
    font-size: 3rem;
}

p {
    margin: 5px 0 15px 0;
    font-size: 1.2rem;
}

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

/* Project card styles */
.project {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 20px;
    width: 300px;
    transition: transform 0.3s ease;
}

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

.project-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.project:hover .project-image img {
    transform: scale(1.1);
}

.project-info {
    padding: 15px;
    /* text-align: center; */
}

.project-info h2 {
    font-size: 1.5rem;
    margin: 10px 0;
}

.project-info p {
    font-size: 1rem;
    color: #555;
}

/* Animation for loading projects */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.project {
    animation: fadeInUp 0.6s ease-in-out;
}
