body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

header,
footer,
main {
    width: 100%;
    max-width: 800px;
    background-color: #fff;
    padding: 20px;
    text-align: left;
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

#project-title {
    font-size: 2em;
    margin: 0;
    color: #222;
}

main {
    padding: 20px;
    max-width: 800px;
    width: 100%;
}

#project-details {
    margin-top: 20px;
}

.project-summary,
.project-description {
    margin-bottom: 20px;
    padding: 10px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.project-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.project-video {
    width: 100%;
    height: 400px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

a {
    color: #007BFF;
    text-decoration: none;
}

.back-home-button,
.back-to-business-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 15px;
    background-color: #fff;
    color: #333;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
}

li {
    list-style: none;
    margin: 0 auto;
    padding: 10px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

article {
    max-width: 700px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1,
h2,
h3 {
    color: #111;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5em;
    margin-top: 0;
}

h2 {
    font-size: 1.8em;
    margin-top: 40px;
}

h3 {
    font-size: 1.5em;
    margin-top: 30px;
}

p {
    margin-bottom: 20px;
}

.commit {
    border-left: 4px solid #ddd;
    padding-left: 15px;
    margin-bottom: 30px;
}

.commit-title {
    font-weight: bold;
    font-size: 1.2em;
}

.commit-date {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 10px;
}

@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    header,
    footer,
    main {
        padding: 15px;
    }

    .project-video {
        height: 200px;
    }
}

.work-in-progress-warning {
    background-color: #ffeb3b;
    /* Light yellow background */
    color: #333;
    /* Dark text for contrast */
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.project-thumbnail {
    width: 150px;
    /* Increased width */
    height: 150px;
    /* Increased height */
    background-color: #ddd;
    border-radius: 8px;
    flex-shrink: 0;
}