* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #191724;
    color: #e0def4;
    line-height: 1.6;
    padding: 0 20px;
}

header {
    background-color: #1f1d2e;
    padding: 20px 0;
    text-align: center;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 15px;
}

header nav ul li a {
    color: #9ccfd8;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #ebbcba;
}

#hero {
    text-align: center;
    padding: 50px 0;
}

#hero h1 {
    font-size: 2.5em;
    color: #e0def4;
}

#hero p {
    font-size: 1.2em;
    color: #908caa;
}

#about a {
    color: #f6c177;
}

section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

section h2 {
    font-size: 1.8em;
    color: #9ccfd8;
    border-bottom: 2px solid #ebbcba;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

#about p {
    font-size: 1.1em;
    color: #908caa;
    line-height: 1.7;
}

.skill-category {
    margin-bottom: 30px;
}

.skill-category h3 {
    font-size: 1.5em;
    color: #e0def4;
    margin-bottom: 10px;
}

.skill-category ul {
    list-style: disc;
    padding-left: 20px;
    color: #908caa;
}

.project {
    background-color: #26233a;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s;
}

.project:hover {
    transform: translateY(-5px);
}

.project h3 {
    font-size: 1.5em;
    color: #e0def4;
    margin-bottom: 10px;
}

.project p {
    color: #908caa;
}

.project a {
    color: #9ccfd8;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.project a:hover {
    color: #ebbcba;
}

#contact {
    text-align: center;
    padding: 40px;
}

#contact h2 {
    text-align: left;
    font-size: 36px;
    color: #ebbcba;
}

.contact {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.contact-icon img {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
}

.contact-icon img:hover {
    transform: scale(1.1);
}
