* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.header {
    background-color: #1e1e1e;
    color: white;
    text-align: center;
    padding: 16px 0;
}

.header h1 {
    margin-bottom: 8px;
}

.nav a {
    margin: 0 10px;
    color: white;
    text-decoration: none;
}

.nav a:hover {
    color: blueviolet;
}

.main {
    padding: 20px;
    background-color: #f5f5f5;
}

.about h2 {
    margin-bottom: 8px;
}

.about p {
    color: #555;
}

.projects {
    margin-top: 32px;
}

.projects h2 {
    margin-bottom: 8px;
}

.project-list .project {
    border-left: 4px solid teal;
    padding: 16px;
    background: white;
    margin-left: 20px;
    margin-bottom: 16px;
}

.project h3 {
    margin-bottom: 5px;
}

.contact {
    margin-top: 32px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-bottom: 16px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-form button {
    padding: 12px 24px;
    background-color: teal;
    color: white;
    border: none;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #006666;
}

.footer {
    text-align: center;
    padding: 16px;
    background-color: #1e1e1e;
    color: white;

}