/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700&display=swap');

/* CSS Variables for Easy Theming - DARK MODE */
:root {
    --primary-color: #8b5cf6;
    --primary-dark: #7c3aed;
    --primary-light: #a78bfa;
    --secondary-color: #ec4899;
    --accent-color: #14b8a6;
    --dark-bg: #0a0a0f;
    --dark-bg-light: #13131a;
    --dark-bg-card: #1a1a24;
    --text-dark: #f1f5f9;
    --text-light: #94a3b8;
    --text-white: #ffffff;
    --text-muted: #64748b;
    --bg-light: #1e1e2e;
    --card-bg: rgba(26, 26, 36, 0.8);
    --border-color: #2d2d3d;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.36);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -1px rgba(0, 0, 0, 0.36);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.36);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 10px 10px -5px rgba(0, 0, 0, 0.5);
    --glow: 0 0 20px rgba(139, 92, 246, 0.3);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background: var(--dark-bg);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(20, 184, 166, 0.1) 0%, transparent 50%);
    animation: backgroundShift 15s ease-in-out infinite alternate;
    z-index: 0;
    pointer-events: none;
}

@keyframes backgroundShift {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1.1) translate(5%, 5%);
    }
}

/* Floating particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent);
    border-radius: 50%;
    animation: float 20s infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

main {
    position: relative;
    z-index: 2;
}

/* Header Styles */
header {
    position: static;
    background: rgba(26, 26, 36, 0.7);
    color: var(--text-white);
    padding: 0;
    border-radius: 0;
    box-shadow: var(--shadow-xl), var(--glow);
    z-index: 1000;
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

header:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 30px rgba(139, 92, 246, 0.4);
    border-color: rgba(139, 92, 246, 0.4);
}

.branding {
    text-align: center;
    padding: 1.5rem 1rem 1rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
    border-radius: 20px 20px 0 0;
    position: relative;
    overflow: hidden;
}

.branding::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.branding h1 {
    margin: 0;
    font-size: 2.5em;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #fff 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.5));
    animation: fadeInDown 0.8s ease-out, glow 2s ease-in-out infinite alternate;
    position: relative;
    z-index: 1;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.3));
    }
    to {
        filter: drop-shadow(0 0 25px rgba(139, 92, 246, 0.6));
    }
}

.branding p {
    margin: 0.5rem 0 0;
    font-size: 1em;
    font-weight: 400;
    color: var(--text-light);
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    z-index: 1;
}

/* Navigation Styles */
nav {
    background: rgba(19, 19, 26, 0.5);
    padding: 0;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 0 0 20px 20px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

nav li {
    margin: 0;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    padding: 1rem 1.5rem;
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--primary-color);
}

nav a:hover {
    background: rgba(139, 92, 246, 0.2);
    color: var(--text-white);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

nav a:hover::before {
    width: 80%;
}

nav a.active {
    background: rgba(139, 92, 246, 0.3);
    color: var(--text-white);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.7);
}

nav a.active::before {
    width: 80%;
}

/* Main Content Area */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 4rem;
    animation: fadeIn 1s ease-out;
    position: relative;
    z-index: 2;
}

/* Container Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    animation: fadeIn 1s ease-out;
}

/* Section Styles */
section {
    padding: 2.5rem;
    margin: 2rem 0;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    animation: slideUp 0.6s ease-out;
    scroll-snap-align: start;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

section:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 30px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.3);
}

/* Typography */
h1 {
    color: var(--text-dark);
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    color: var(--text-dark);
    font-size: 2.2em;
    font-weight: 600;
    margin-bottom: 1.2rem;
    font-family: 'Poppins', sans-serif;
}

h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

p {
    color: var(--text-light);
    font-size: 1.05em;
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Lists */
ul {
    margin: 1.5rem 0;
    padding-left: 0;
}

li {
    color: var(--text-light);
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05em;
    line-height: 1.7;
}

section ul li::before,
.container ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2em;
}

/* Experience Section */
.experience-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 3rem;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.experience-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.experience-section ul {
    list-style: none;
    padding: 0;
}

.experience-section li {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.experience-section li::before {
    content: none;
}

.experience-section li:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
}

.experience-section h3 {
    margin-bottom: 0.5rem;
    font-size: 1.8em;
}

.experience-section strong {
    color: var(--primary-dark);
}

/* About Section */
.about {
    max-width: 900px;
    margin: 3rem auto;
}

.about h1 {
    text-align: center;
    margin-bottom: 2rem;
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.skill-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    backdrop-filter: blur(10px);
}

.skill-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(139, 92, 246, 0.3);
}

.skill-card h3 {
    margin-bottom: 1rem;
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
    gap: 1rem;
}

form label {
    display: none;
}

form input,
form textarea {
    margin: 0;
    padding: 1rem 1.2rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: rgba(26, 26, 36, 0.5);
    color: var(--text-dark);
    backdrop-filter: blur(10px);
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2), 0 0 20px rgba(139, 92, 246, 0.3);
    background: rgba(26, 26, 36, 0.8);
}

form textarea {
    min-height: 150px;
    resize: vertical;
}

form button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
    margin-top: 0.5rem;
}

form button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(139, 92, 246, 0.4);
}

form button:active {
    transform: translateY(0);
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, rgba(26, 26, 36, 0.95) 0%, rgba(19, 19, 26, 0.95) 100%);
    color: var(--text-white);
    text-align: center;
    padding: 2.5rem 2rem;
    margin-top: 3rem;
    border-top: 3px solid rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 2;
}

footer p {
    color: var(--text-light);
    margin: 0.5rem 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.footer-links a:hover {
    color: var(--primary-light);
    background: rgba(139, 92, 246, 0.2);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0 1rem;
}

.social-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 1.5em;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    transform: translateY(-5px);
    background: var(--primary-color);
    box-shadow: var(--shadow-md), 0 0 20px rgba(139, 92, 246, 0.5);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(26, 26, 36, 0.95) 0%, rgba(26, 26, 36, 0.9) 100%);
    border-radius: 25px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-xl), 0 0 40px rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.2);
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(10px, 10px) scale(1.1);
    }
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.hero .subtitle {
    font-size: 1.3em;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-white);
    padding: 1rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    margin: 0.5rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(139, 92, 246, 0.5);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100px);
    }
}

/* Smooth Scrolling Offset for Fixed Header */
html {
    scroll-padding-top: 100px;
}

/* Experience Timeline */
.experience-timeline {
    margin-top: 2rem;
}

.experience-item {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

.experience-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg), 0 0 25px rgba(139, 92, 246, 0.2);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
}

.experience-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.8em;
    color: var(--text-dark);
}

.experience-meta {
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.05em;
}

.experience-meta a {
    color: var(--primary-light);
    text-decoration: none;
    border-bottom: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    padding-bottom: 2px;
}

.experience-meta a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(236, 72, 153, 0.5);
}

.experience-item ul {
    margin-top: 1rem;
}

/* Skills Categories */
.skills-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.skill-category {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(236, 72, 153, 0.08) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.skill-category:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md), 0 0 25px rgba(139, 92, 246, 0.2);
    transform: translateY(-5px);
}

.skill-category h3 {
    margin-bottom: 1.5rem;
    font-size: 1.4em;
}

/* Skill Tags */
.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.skill-tag {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.skill-tag:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md), 0 0 15px rgba(139, 92, 246, 0.4);
}

/* Groups Grid */
.groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.group-card {
    background: linear-gradient(135deg, rgba(26, 26, 36, 0.9) 0%, rgba(26, 26, 36, 0.95) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.group-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(139, 92, 246, 0.3);
}

.group-icon {
    font-size: 4em;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.group-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4em;
    color: var(--text-dark);
}

.group-card p {
    color: var(--text-light);
    font-size: 1em;
    line-height: 1.6;
}

/* Contact Info Styling */
.contact-info {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(10px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .branding h1 {
        font-size: 2.2em;
    }
    
    .branding p {
        font-size: 1em;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav a {
        padding: 1rem;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    nav a::before {
        display: none;
    }
    
    section {
        padding: 2rem;
        margin: 1.5rem 0;
    }
    
    h1 {
        font-size: 2.2em;
    }
    
    h2 {
        font-size: 1.8em;
    }
    
    .hero h1 {
        font-size: 2.5em;
    }
    
    .hero .subtitle {
        font-size: 1.2em;
    }
    
    .container {
        padding: 1rem;
    }
    
    form {
        padding: 2rem 1.5rem;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .skills-categories {
        grid-template-columns: 1fr;
    }
    
    .groups-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-item {
        padding: 1.5rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .branding h1 {
        font-size: 1.8em;
    }
    
    .branding p {
        font-size: 0.9em;
    }
    
    main {
        padding: 0 1rem;
    }
    
    section {
        padding: 1.5rem;
    }
    
    h1 {
        font-size: 1.8em;
    }
    
    .hero h1 {
        font-size: 2em;
    }
    
    .skill-tag {
        font-size: 0.85em;
        padding: 0.5rem 1rem;
    }
    
    .group-icon {
        font-size: 3em;
    }
}