/* Reset */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#121212;
    color:#fff;
    line-height:1.6;
}

/* Header */
header{
    background:#1e1e1e;
    text-align:center;
    padding:30px;
}

header h1{
    color:#4db8ff;
    margin-bottom:10px;
}

nav{
    margin-top:20px;
}

nav a{
    color:white;
    text-decoration:none;
    margin:0 15px;
}

nav a:hover{
    color:#4db8ff;
}

/* Sections */
section{
    width:80%;
    max-width:900px;
    margin:40px auto;
    background:#1e1e1e;
    padding:25px;
    border-radius:10px;
}

h2{
    color:#4db8ff;
    margin-bottom:15px;
}

ul{
    list-style:none;
}

ul li{
    background:#333;
    padding:10px;
    margin:10px 0;
    border-radius:5px;
}

/* Projects */
.project{
    background:#333;
    padding:15px;
    border-radius:8px;
    margin-bottom:15px;
}

.project h3{
    color:#4db8ff;
}

/* Footer */
footer{
    text-align:center;
    padding:20px;
    background:#1e1e1e;
    margin-top:30px;
}