@import url(./style.css);
.project {
    background-color: #fff;
    border-left: 5px solid var(--primary-color);
    padding: 20px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.project:hover {
    transform: translateY(-5px);
}

.project-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.project-subheading {
    color: var(--secondary-color);
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.project-description {
    margin-bottom: 15px;
    line-height: 1.7;
}

.project-date {
    font-style: italic;
    margin-bottom: 10px;
    color: #666;
}

.project-logo {
    display: block;
    margin: 10px 0;
    max-width: 100px;
    height: auto;
}

.tech-list {
    list-style-type: square;
    padding-left: 20px;
    margin-bottom: 20px;
}
