/* Basic reset to remove default browser spacing */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    color: #ffffff;
    background-color: #000000;
}
/* Style for the list */
ul {
    list-style-type: none; /* Remove default bullets */
    padding: 0;
}
li {
    margin-bottom: 20px; /* Adds space between each skill*/
}
strong {
    display: block; /* Makes the skill name sit on its own line */
    font-size: 1.2em;
    color: #000;
}
p {
    margin: 5px 0 0 0; /* Tightens the space between title and description */
    color: #fff;
}
.project-item {
margin-bottom: 30px;
}
.project-item h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
    color: #000;
}
.project-item p{
    color: #fff;
    margin-top: 0;
}
/* Container for the projects section */
#projects {
    margin-top: 40px;
}
/* Individual project card styling */
.project-item {
    background: #ffffff; /* White background for project cards */
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 8px; /*Slightly rounded corners for modern look*/
    border: 1px solid #e0e0e0; /* Light border for separation */
    transition: transform 0.2s; /*Adds a small animation effect */
    background-color: transparent;
}
/* Hover effect to make it feel interactive */
.project-item:hover {
    border-color: #0984e3; /* Changes border color on hover */
}
/* Styling for the project title */
.project-item h3 {
    margin: 0 0 10px 0;
    font-size: 1.25em;
    color: #e0e0e0;
}
/* Styling for the project description */
.project-item p {
    margin: 0 0 15px 0;
    color: #fff;
}
/* Footer styling */
footer {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #dfe689; /* Light seperator line */
    text-align: center; /* Centers links */
    color: #fff;
    font-size: 0.9rem;
}
/* Styling for links in the footer */
footer a {
    color: #0984e3; /* Blue color for links */
    text-decoration: none; /* Removes underline */
    margin: 0 10px; /* Adds space between links */
    font-weight: 0.9rem;
}
footer a:hover {
    text-decoration: underline;
}
.project-link {
    color: #0984e3; 
    font-weight: bold;
    text-decoration: none;
}
.project-link:hover {
    color: #08438b; 
    text-decoration: underline;
}
/* Contact section styling */
#contact {
    margin-top: 40px 0;
    padding: 20px;
    background-color: transparent;
    border-radius: 8px; /* Rounded corners  */
    border: 1px solid #333; /* Border for separation */
    border: 1px solid #e0e0e0;
}
#contact h2 {
    margin-top: 0;
    color: #e0e0e0;
    margin-bottom: 20px;
}
#contact ul{
    list-style-type: none; /* Remove default bullets */
    padding: 0;
    margin-top: 0;
}
#contact li {
    margin-bottom: 12px; /* Adds space between contact items */
    color: #cccccc;
}
/* Styling for links within contact list */
#contact li a {
    color: #0984e3;
    text-decoration: none;
    font-weight: 500;
}
#contact li a:hover {
    color: #08438b;
    text-decoration: underline;
}
.header {
    text-align :center;
}
.skills-list {
    list-style-type: none; /* Remove default bullets */
    padding: 0;
    margin-bottom: 20px;
    background-color: transparent;
    border:#e0e0e0 1px solid;
    border-radius: 8px;
    padding: 20px;
}
.skill {
    color: #e0e0e0;
    font-weight: bold;
    margin-bottom: 10px;
}
.contact {
    color: #e0e0e0;
    font-weight: bold;
}
.skills-list:hover {
    border-color: #0984e3;
}
#contact:hover {
    border-color: #0984e3;
}
