.project {
    background-color: #333;
    padding: 20px;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    max-width: 900px;
    color: #e5e5e5;
}

.project h3 {
    color: #ff9505;
    margin-bottom: 10px;
}

.project p {
    line-height: 1.6;
}

.image-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 10px;
}

.image-container img {
    flex-grow: 1;
    width: 22%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.image-container img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}