body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333;
    transition: color 0.3s;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #007acc;
    color: white;
    transition: background 0.3s;
}

nav a, button {
    margin: 0 10px;
    text-decoration: none;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: opacity 0.3s;
}

nav a:hover, button:hover {
    opacity: 0.7;
}

#projects ul {
    list-style: none;
    padding: 0;
}

#projects li {
    margin: 10px 0;
    padding: 10px;
    background: #f4f4f4;
    border-radius: 5px;
    transition: transform 0.3s, background 0.3s;
    max-width: 90%; /* Prevent text overflow */
}

#projects li:hover {
    transform: scale(1.02); /* Reduced zoom effect */
    background: #ddd;
    padding-left: 15px; /* Shift text slightly right */
}

.quote {
    font-style: italic;
    color: #c2c2c2;
}