body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    background-color: #f4f7f6;
    color: #333;
}

.container {
    max-width: 700px;
    margin: 20px auto;
    padding: 25px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 10px;
}

h1 i {
    margin-right: 10px;
    color: #3498db;
}

p {
    text-align: center;
    color: #555;
    margin-bottom: 30px;
}

p code {
    background-color: #ecf0f1;
    padding: 2px 5px;
    border-radius: 3px;
    font-family: monospace;
}

.project-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-list li {
    background-color: #ecf0f1;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
}

.project-list li:hover {
    background-color: #dfe6e9;
}

.project-list li i {
    margin-right: 15px;
    color: #3498db;
    width: 20px; /* Ensure icons align */
    text-align: center;
}

.project-list li a {
    color: #2980b9;
    text-decoration: none;
    font-weight: 500;
    flex-grow: 1; /* Allow link to take up space */
}

.project-list li a:hover {
    text-decoration: underline;
}

.project-list li span {
    color: #7f8c8d;
    font-size: 0.9em;
    margin-left: 10px;
}

.back-link {
    text-align: center;
    margin-top: 30px;
}

.back-link a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.back-link a:hover {
    text-decoration: underline;
}