* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(180deg,#f7f9fc 0%, #eef4fb 100%);
    color: #333;
    line-height: 1.6;
}
header {
    background: #2c3e50;
    color: white;
    padding: 10px 0;
    text-align: center;
}
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
}
nav a {
    color: white;
    margin: 0 25px;
    text-decoration: none;
}
nav a:hover {
    text-decoration: underline;
}
#about {
    padding:20px;
    font-style: italic;
    font-size: 1.2em;
}
#projects {
    padding: 20px;
    font-style: italic;
    font-size: 1.2em;
}
#projects ul {
    list-style: none;
    padding: 0;
}
h2 {
    margin-bottom: 10px;
    font-size: 2rem;
    font-family: impact, sans-serif;
}
#projects h3 {
    font-family: Impact, sans-serif;
    margin-top: 8px;
    font-size: 1.5rem;
}
#contact {
    padding: 20px;
    font-style: italic;
    font-size: 1.2em;
}
#contact a {
    color: #284567;
    text-decoration: underline;
}
