body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background:darkslategray;
    color: #222;
}
/* Style for the skills section */
#Skills {
    background: #f3e6fa;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 2rem;
}

.skills-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.skills-list li {
    background:rgb(69, 124, 110);
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
    transition: 0.2s;
}

.skills-list li:hover {
    background: #0c5791;
    cursor: pointer;}

header {
    background: rgb(151, 112, 189);
    color: #eee6e6;
    padding: 2rem 0 1rem 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
    letter-spacing: 2px;
    float: left;
    margin-top: -30px;

}

header p {
    margin: 0.5rem 0 1rem 0;
    font-size: 1.2rem;
    color: #8bc0d7;
    float: left;
    margin-bottom: auto;
}

nav {
    margin-top: 1rem;
}

nav a {
    color:rgb(235, 225, 225);
    text-decoration: none;
    margin: 0 1rem;
    font-weight: bold;
    transition: color 0.2s;
    display: flex;
    float:right;
    margin-top: -20px;
}

nav a:hover {
    color: #058016;
}

main {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}

section {
    margin-bottom: 2.5rem;
    background: #fbf6f6;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 2rem;
}

h2 {
    color: rgb(192, 48, 144);
    margin-top: 0;
}

.project {
    margin-bottom: 1.5rem;
}

.project h3 {
    margin-bottom: 0.3rem;
    color: #0c5791;
}

footer {
    background: #222;
    color: #decfcf;
    text-align: center;
    padding: 1rem 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

a {
    color: #0984e3;
}

a:hover {
    text-decoration: underline;
}