body {
    font-family: 'Quicksand', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #eae2f8; /* Soft lavender */
}

.resume {
    max-width: 800px;
    margin: 50px auto;
    background-color: rgba(255, 255, 255, 0.9); /* White with transparency */
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px); /* Glass-like transparency effect */
}

.header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.profile-pic {
    position: absolute;
    top: -30px; /* Adjusted to create space */
    left: 50%;
    transform: translateX(-50%);
    font-size: 100px;
    color: #663399;
    opacity: 0.8;
    z-index: 1;
}

.header h1 {
    color: #333;
    padding-top: 90px; /* Adjusted padding to create space */
}


.header p {
    color: #666;
    margin-top: 0;
}

.content {
    margin-top: 20px;
}

.content h2 {
    color: #663399; /* Deep lavender */
    border-bottom: 2px solid #663399; /* Deep lavender */
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.content p {
    color: #666;
    line-height: 1.6;
}

ul {
    padding-left: 20px;
}

.skills, .additional-skills {
    list-style: none;
    padding: 0;
}

.skills li, .additional-skills li {
    margin-bottom: 10px;
}

.skills i, .additional-skills i {
    margin-right: 10px;
}
