h1 {
    font-size: 2.7rem;
    font-weight: 800;
    color: #22223b;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-align: center;
    text-shadow: 0 2px 8px #e0c3fc55;
}

h5 {
    font-family: 'Fira Mono', monospace;
    font-size: 1rem;
    color: #4a4e69;
    margin-top: 0;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    background: linear-gradient(135deg, #f7f7f9 0%, #e0c3fc 100%);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

div {
    border: none;
}

.container {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(34, 34, 59, 0.08);
    text-align: center;
    margin: 5% auto;
    max-width: 700px;
    z-index: 1;
    position: relative;
}

/* Section header for work history */
ul[title]::before {
    content: attr(title);
    display: block;
    font-weight: 700;
    font-size: 1.2rem;
    background: #e9ecef;
    color: #22223b;
    padding: 0.5rem 1rem;
    border-radius: 8px; /* Rounded corners on all sides */
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(34,34,59,0.04);
    text-align: left;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0 auto 2rem auto;
    max-width: 600px;
}

li {
    background: #ffffff;
    padding: 1.25rem 1.5rem;
    margin: 1.2rem 0;
    text-align: left;
    border: 1px solid #858585;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(34,34,59,0.05);
    transition: box-shadow 0.2s, transform 0.2s;
    font-size: 1.05rem;
}

li:hover {
    box-shadow: 0 4px 16px rgba(58,134,255,0.10);
    transform: translateY(-2px) scale(1.01);
}

a {
    color: #3a86ff;
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.2s;
    font-weight: 500;
}

a:hover {
    color: #845ec2;
    text-decoration: underline;
}

/* Optional: style for back link */
.back-link {
    display: inline-block;
    margin-top: 2rem;
    color: #845ec2;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.back-link:hover {
    color: #3a86ff;
    text-decoration: underline;
}

.gallery {
    width: 100vw;
    max-width: 1200px;
    margin: 2rem auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    padding: 32px;
    justify-items: center;
    align-items: center;
    box-sizing: border-box;
    border-radius: 25px;
    background: #f8f9fa;
    box-shadow: 0 2px 12px rgba(34,34,59,0.04);
}

.gallery-photo {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    object-fit: cover;
    transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-photo:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.slider-container {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    border-radius: 16px;
    background: #f8f9fa;
    box-shadow: 0 2px 12px rgba(34,34,59,0.04);
}

.image-slider {
    display: flex;
    animation: slide 15s infinite linear;
}

.image-slider img {
    width: 100%;
    height: auto;
    max-width: 300px;
    margin-right: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}