body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
    background-color: black; /* Black background for the entire page */
}

header {
    background: #1a1a1a;
    color: #f4f4f4;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

header h1 {
    margin: 0;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color:whitesmoke;
    text-decoration: none;
}

nav ul li a:hover {
    text-decoration: underline;
}

section {
    padding: 80px 20px 20px;
}

section#about {
    background: #040000fd;
}

section#skills {
    background: #0b0000;
}

section#education {
    background: #0e0000;
}

section#projects {
    background: #060000;
}

section#contact {
    background: #0a0000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background-image: url('https://t3.ftcdn.net/jpg/05/71/06/76/360_F_571067620_JS5T5TkDtu3gf8Wqm78KoJRF1vobPvo6.jpg');
    background-size: cover; /* Ensures the image covers the entire container */
    background-position: center; /* Centers the image */
    color: white; /* White text color for readability */
   
}

h2 {
    color:white;
    margin-bottom: 20px;
}

.skill, .project, .education-item {
    margin-bottom: 20px;
}

.project a, .education-item a {
    color: #007bff;
    text-decoration: none;
}

.project a:hover, .education-item a:hover {
    text-decoration: underline;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    margin: 10px 0 5px;
}

form input, form textarea {
    padding: 10px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
}
header{
    background-color: blue,purple;
}