/* General Styling */
body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f4f4f4;

}

/* Project Details Section */
.project-details {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.project-header {
    text-align: center;
    margin-bottom: 40px;
}

.project-header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.project-subtitle {
    font-size: 1.2em;
    color: #666;
}

.project-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.project-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.project-description {
    max-width: 700px;
}

.project-description h2, .project-description h3 {
    color: #333;
    margin-bottom: 10px;
}

.project-description ul {
    list-style-type: disc;
    padding-left: 20px;
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    list-style-type: none;
}

.tech-list li {
    background: #ddd;
    border-radius: 8px;
    padding: 5px 10px;
}

/* Project Links */
.project-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.project-link {
    color: #fff;
    background-color: #007bff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.project-link:hover {
    background-color: #0056b3;
}

.home-button {
    text-align: center;
    margin: 20px 0;
}

.home-button a {
    text-decoration: none;
    padding: 10px 20px;
    color: white;
    background-color: #007bff;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}

.home-button a:hover {
    background-color: #0056b3;
}
