* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(120deg, #e3f2fd 0%, #ede7f6 60%, #fce4ec 100%);
    color: #333;
    /* display: flex;
    flex-direction: column;
    align-items: center; */
}

/* ====== HEADER START ====== */

.header {
    background: linear-gradient(90deg, #bbdefb 0%, #d1c4e9 80%, #f8bbd0 100%);
    border-bottom-right-radius: 2em;
    border-bottom-left-radius: 2em;
}

.header-content {
    margin-right: auto;
    margin-left: auto;
    max-width: 900px;
    /* width: 900px; */
    padding: 3.5rem 1rem;
}

.header-content h1 {
    font-size: 2.75rem;
}

.header-content p {
    font-size: 1.1rem;
    margin-top: .25em;
    color: #6a1b9a;
    text-shadow: 0 2px 8px rgba(156, 39, 176, 0.10);
}

/* ====== HEADER END ====== */



/* ====== MAIN START ====== */
main {
    background: linear-gradient(120deg, #e3f2fd 0%, #ede7f6 60%, #fce4ec 100%);
    border-radius:2rem;
    box-shadow: 0 4px 32px rgba(156, 39, 176, 0.08);
    max-width: 900px;
    margin-top: 1.25em;
    margin-right: auto;
    margin-left: auto;
}

.main-content {
    padding: 2.5rem 2rem;
}

section {
    margin-bottom: 2.5em;
}

ul {
    line-height: 1.5em;
    margin-left: 1em;
}

section h2 {
    font-size: 1.5rem;
    color: #6a1b9a;
    margin-bottom: .75em;
    border-left: 8px solid #ba68c8;
    padding-left: .75em;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(156, 39, 176, 0.08);
    /* display: flex;
    align-items: center;
    gap: 10px; */
}

.duration-date {
    color: #9575cd;
    font-size: 0.97rem;
}

.work-experience-item, 
.education-item {
    width: 95%;
    background: linear-gradient(120deg, #e3f2fd 0%, #ede7f6 60%, #fce4ec 100%);
    margin-top: 1em;
    /* background-color: #9575cd; */
    margin-right: auto;
    margin-left: auto;
    border-radius: 1em;
    padding: 1rem;
}

.work-experience-item h3, .education-item h3 {
    margin-top: 0;
    color: #6a1b9a;
    font-size: 1.13rem;
    text-shadow: 0 2px 8px rgba(33,150,243,0.06);
}

.work-experience-item p, .education-item p {
    margin-top: 1em;
}

.work-experience-item ul, .education-item ul {
    margin-top: 1em;
    margin-left: 1em;
    line-height: 1.5em;
}


.portfolio-container {
    display: flex;
    /* flex-direction: column; */
    gap: 1em;
    flex-wrap: wrap;
}

.portfolio-item {
    display: flex;
    row-gap: 1em;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #ede7f6 0%, #bbdefb 60%, #fce4ec 100%);
    font-size: 1rem;
    color: #6a1b9a;
    /* min-width: 220px; */
    width: 280px;
    height: 150px;
    border-radius: 1em;
    transition: transform 0.2s, box-shadow 0.2s;
}

.portfolio-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 32px rgba(156, 39, 176, 0.14);
}

.button {
    background: linear-gradient(90deg, #ba68c8 0%, #64b5f6 100%);
    border-radius: .5em;
    width: 40%;
    height: 30%;
    font-size: 1.25rem;
    color: white;
    font-weight: 600;
    text-decoration: none;
    align-content: center;
}

.button:hover {
    background: linear-gradient(90deg, #64b5f6 0%, #ba68c8 100%);
    box-shadow: 0 6px 24px rgba(156, 39, 176, 0.18);
    transform: scale(1.07);
}


/* ====== MAIN END ====== */

/* ====== FOOTER START ====== */

.footer {
    margin-top: 1rem;
    background: linear-gradient(90deg, #ede7f6 0%, #bbdefb 80%, #fce4ec 100%);
    color: #6a1b9a;
    text-align: center;
    padding: 30px 0;
    box-shadow: 0 -2px 16px rgba(156, 39, 176, 0.08);
    border-top-right-radius: 40px;
    border-top-left-radius: 40px;
}

/* ====== FOOTER END ====== */

@media (max-width: 450px) {
    
/* ====== HEADER START ====== */

.header-content {
    max-width: 85vw;
    width: 900px;
    padding: 2.5rem 0rem;
}

.header-content h1 {
    font-size: 2.5rem;
}

.header-content p {
    font-size: 1.25rem;
}

/* ====== HEADER END ====== */

/* ====== MAIN START ====== */
main {
    width: 100vw;
}

.main-content {
    padding: 2.5rem 1.5rem;
}

/* ====== MAIN END ====== */


}