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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    background-image: url("network-4851119.jpg"); /* Add your image path here */
    background-size: cover; /* Makes the image cover the entire background */
    background-position: center; /* Centers the background image */
    color: #333;
}

/* Header Styles */
header {
    background: #282c34;
    color: #ffffff;
    padding: 20px;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

p {
    font-size: 1.2rem;
}

/* Navigation Styles */
nav ul {
    list-style: none;
    padding: 10px 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #61dafb;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1.1rem; /* Adjust this value as needed */
}

nav ul li a:hover {
    color: #21a1f1;
}

/* Section Styles */
section {
    padding: 40px;
    margin: 20px auto;
    max-width: 900px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #61dafb;
    padding-bottom: 10px;
}

/* Project List Styles */
ul {
    list-style-type: none;
}

li {
    margin-bottom: 20px;
}

li h3 {
    font-size: 1.5rem;
    color: #282c34;
}

li p {
    font-size: 1.2rem;
}
