@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Sophisticated color palette inspired by her multicultural journey */
    --rose-gold: #b76e79;
    --soft-coral: #f4a09c;
    --warm-beige: #f5e6d3;
    --sage-green: #87a96b;
    --dusty-blue: #6b7c93;
    --deep-teal: #2c5f5d;
    --cream: #faf7f0;
    --charcoal: #2d2d2d;
    --warm-gray: #6b6b6b;
    
    /* Gradients */
    --gradient-main: linear-gradient(135deg, #b76e79 0%, #6b7c93 100%);
    --gradient-soft: linear-gradient(135deg, #f5e6d3 0%, #faf7f0 100%);
    --gradient-accent: linear-gradient(135deg, #87a96b 0%, #2c5f5d 100%);
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-deep: 0 12px 40px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    background: var(--cream);
    overflow-x: hidden;
    position: relative;
}

/* Floating hearts animation */
@keyframes float-up {
    0% {
        opacity: 0;
        transform: translateY(100vh) translateX(0) scale(0);
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) translateX(-10px) scale(0.5);
    }
    20% {
        transform: translateY(80vh) translateX(10px) scale(0.8);
    }
    40% {
        transform: translateY(60vh) translateX(-15px) scale(1);
    }
    60% {
        transform: translateY(40vh) translateX(15px) scale(0.8);
    }
    80% {
        transform: translateY(20vh) translateX(-10px) scale(0.6);
    }
    100% {
        opacity: 0;
        transform: translateY(-10vh) translateX(0) scale(0.3);
    }
}

.floating-hearts {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.heart {
    position: absolute;
    bottom: -20px;
    font-size: 20px;
    color: rgba(183, 110, 121, 0.3);
    animation: float-up 15s linear infinite;
}

.heart:nth-child(1) { left: 10%; animation-delay: 0s; font-size: 18px; }
.heart:nth-child(2) { left: 25%; animation-delay: 3s; font-size: 24px; }
.heart:nth-child(3) { left: 40%; animation-delay: 6s; font-size: 16px; }
.heart:nth-child(4) { left: 55%; animation-delay: 9s; font-size: 22px; }
.heart:nth-child(5) { left: 70%; animation-delay: 12s; font-size: 20px; }
.heart:nth-child(6) { left: 85%; animation-delay: 15s; font-size: 18px; }

/* Subtle floral pattern background */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(183, 110, 121, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(135, 169, 107, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(107, 124, 147, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Header Styles */
header {
    background: rgba(250, 247, 240, 0.95);
    backdrop-filter: blur(10px);
    color: var(--charcoal);
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 0.8rem 0;
    box-shadow: var(--shadow-hover);
}

.logo-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo-centered h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--rose-gold);
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
    text-align: center;
}

.logo-centered h1:hover {
    color: var(--deep-teal);
}

/* Main Content */
main {
    margin-top: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Sections */
section {
    padding: 100px 0;
    position: relative;
}

.about {
    background: var(--cream);
    position: relative;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-section {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-section.professional-life {
    flex-direction: row-reverse;
}

.about-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--rose-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-image {
    flex: 0 0 300px;
    position: relative;
    overflow: visible;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    background: var(--gradient-main);
    border-radius: 8px;
    z-index: -1;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.about-image:hover::before {
    opacity: 0.5;
    transform: rotate(3deg);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-deep);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.about-image:hover img {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--warm-gray);
    position: relative;
    font-weight: 400;
}

/* Emoji animations for photos */
.emoji-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Show animations on hover */
.about-image:hover .emoji-animation {
    z-index: 10;
    opacity: 1;
}

/* Hearts animation for personal photo */
.hearts-animation .emoji {
    position: absolute;
    font-size: 24px;
    opacity: 0;
    animation: float-hearts 8s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@keyframes float-hearts {
    0% {
        opacity: 0;
        transform: translateY(20px) translateX(0) scale(0.5) rotate(0deg);
    }
    20% {
        opacity: 0.8;
        transform: translateY(-10px) translateX(10px) scale(1) rotate(10deg);
    }
    40% {
        opacity: 0.9;
        transform: translateY(-30px) translateX(-10px) scale(1.1) rotate(-10deg);
    }
    60% {
        opacity: 0.8;
        transform: translateY(-50px) translateX(15px) scale(1) rotate(15deg);
    }
    80% {
        opacity: 0.4;
        transform: translateY(-70px) translateX(-5px) scale(0.9) rotate(-5deg);
    }
    100% {
        opacity: 0;
        transform: translateY(-90px) translateX(0) scale(0.7) rotate(0deg);
    }
}

.hearts-animation .heart:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 6s;
}

.hearts-animation .heart:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
    animation-duration: 7s;
}

.hearts-animation .heart:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
    animation-duration: 8s;
}

.hearts-animation .heart:nth-child(4) {
    top: 40%;
    right: 10%;
    animation-delay: 3s;
    animation-duration: 6.5s;
}

.hearts-animation .heart:nth-child(5) {
    bottom: 20%;
    right: 25%;
    animation-delay: 4s;
    animation-duration: 7.5s;
}

.hearts-animation .heart:nth-child(6) {
    top: 60%;
    left: 15%;
    animation-delay: 5s;
    animation-duration: 8s;
}

/* Sparkles animation for professional photo */
.sparkles-animation .emoji {
    position: absolute;
    font-size: 22px;
    opacity: 0;
    animation: twinkle-sparkle 4s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@keyframes twinkle-sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5) rotate(0deg);
    }
    25% {
        opacity: 0.4;
        transform: scale(0.8) rotate(180deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.2) rotate(360deg);
    }
    75% {
        opacity: 0.6;
        transform: scale(0.9) rotate(540deg);
    }
}

.sparkles-animation .sparkle:nth-child(1) {
    top: 5%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 3s;
}

.sparkles-animation .sparkle:nth-child(2) {
    top: 10%;
    right: 10%;
    animation-delay: 0.5s;
    animation-duration: 3.5s;
}

.sparkles-animation .sparkle:nth-child(3) {
    bottom: 15%;
    left: 8%;
    animation-delay: 1s;
    animation-duration: 4s;
}

.sparkles-animation .sparkle:nth-child(4) {
    bottom: 10%;
    right: 5%;
    animation-delay: 1.5s;
    animation-duration: 3.2s;
}

.sparkles-animation .sparkle:nth-child(5) {
    top: 50%;
    left: 2%;
    animation-delay: 2s;
    animation-duration: 3.8s;
}

.sparkles-animation .sparkle:nth-child(6) {
    bottom: 5%;
    right: 15%;
    animation-delay: 2.5s;
    animation-duration: 4.2s;
}

/* Debate animation for debate photo */
.debate-animation .emoji {
    position: absolute;
    font-size: 24px;
    opacity: 0;
    animation: debate-pulse 5s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@keyframes debate-pulse {
    0%, 100% {
        opacity: 0;
        transform: scale(0.8) translateY(0);
    }
    20% {
        opacity: 0.6;
        transform: scale(1) translateY(-5px);
    }
    50% {
        opacity: 1;
        transform: scale(1.2) translateY(-10px);
    }
    80% {
        opacity: 0.6;
        transform: scale(1) translateY(-5px);
    }
}

.debate-animation .debate-icon:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 4s;
}

.debate-animation .debate-icon:nth-child(2) {
    top: 15%;
    right: 10%;
    animation-delay: 0.8s;
    animation-duration: 4.5s;
}

.debate-animation .debate-icon:nth-child(3) {
    bottom: 20%;
    left: 10%;
    animation-delay: 1.6s;
    animation-duration: 5s;
}

.debate-animation .debate-icon:nth-child(4) {
    top: 45%;
    right: 5%;
    animation-delay: 2.4s;
    animation-duration: 4.2s;
}

.debate-animation .debate-icon:nth-child(5) {
    bottom: 15%;
    right: 20%;
    animation-delay: 3.2s;
    animation-duration: 4.8s;
}

.debate-animation .debate-icon:nth-child(6) {
    top: 60%;
    left: 8%;
    animation-delay: 4s;
    animation-duration: 5.2s;
}


.sparkles-animation .sparkle:nth-child(5) {
    top: 50%;
    left: -5px;
    animation-delay: 2s;
    animation-duration: 3.8s;
}

.sparkles-animation .sparkle:nth-child(6) {
    top: 70%;
    right: -5px;
    animation-delay: 2.5s;
    animation-duration: 4.2s;
}

/* Add subtle glow effect on hover */
.about-image:hover .hearts-animation .emoji {
    animation-duration: 4s;
    filter: drop-shadow(0 0 8px rgba(255, 182, 193, 0.8));
}

.about-image:hover .sparkles-animation .emoji {
    animation-duration: 2s;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
}

/* Ensure photo stays visible but animations are on top */
.about-image:hover img {
    transform: translateY(-5px) scale(0.98);
}

/* Places section with cultural pattern */
.places {
    background: linear-gradient(to bottom, var(--cream) 0%, var(--warm-beige) 100%);
    position: relative;
}

/* Map subtext styling */
.map-subtext {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--warm-gray);
    font-style: italic;
    opacity: 0.7;
    margin-top: 0.5rem;
    margin-bottom: -1.5rem;
    font-weight: 300;
}

/* Map Styles */
.map-container {
    margin-top: 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-deep);
    position: relative;
    background: white;
    padding: 4px;
}

#world-map {
    height: 600px;
    width: 100%;
    position: relative;
    z-index: 2;
    border-radius: 8px;
}

/* Flag marker styles using divIcon */
.leaflet-marker-icon.flag-marker {
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    z-index: 1000 !important;
}

.flag-marker .flag-container {
    width: 48px;
    height: 36px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 2px solid white;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.flag-marker:hover .flag-container {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    border-color: var(--rose-gold);
    border-width: 3px;
}

/* Add wave animation on hover */
@keyframes flag-wave {
    0%, 100% {
        transform: scale(1.1) translateY(-2px) rotate(0deg);
    }
    25% {
        transform: scale(1.1) translateY(-2px) rotate(-2deg);
    }
    75% {
        transform: scale(1.1) translateY(-2px) rotate(2deg);
    }
}

.flag-marker:hover .flag-container {
    animation: flag-wave 1s ease-in-out infinite;
}

/* Fallback pin marker styles */
.leaflet-marker-icon.pin-marker {
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    z-index: 1000 !important;
}

.pin-marker .pin-icon {
    font-size: 24px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.leaflet-marker-icon.pin-marker:hover .pin-icon {
    transform: scale(1.2) translateY(-3px);
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.4));
}
/* Leaflet control adjustments for mobile */
.leaflet-control-zoom {
    border: none !important;
    box-shadow: var(--shadow-soft) !important;
    border-radius: 20px !important;
    overflow: hidden !important;
}

.leaflet-control-zoom a {
    background-color: white !important;
    color: var(--rose-gold) !important;
    border: none !important;
    width: 36px !important;
    height: 36px !important;
    line-height: 36px !important;
    font-size: 20px !important;
    font-weight: normal !important;
    transition: all 0.3s ease !important;
}

.leaflet-control-zoom a:hover {
    background-color: var(--warm-beige) !important;
    color: var(--deep-teal) !important;
}

.leaflet-touch .leaflet-control-zoom a {
    width: 44px !important;
    height: 44px !important;
    line-height: 44px !important;
}

/* Custom popup styling */
.leaflet-popup-content-wrapper {
    border-radius: 15px !important;
    box-shadow: var(--shadow-hover) !important;
    border: 1px solid rgba(183, 110, 121, 0.2) !important;
}

.leaflet-popup-tip {
    background: white !important;
    border: 1px solid rgba(183, 110, 121, 0.2) !important;
}

/* Ensure Leaflet markers are visible */
.leaflet-marker-icon {
    z-index: 1000 !important;
}

.leaflet-marker-pane {
    z-index: 600 !important;
}

.leaflet-tile-pane {
    z-index: 200 !important;
}

.leaflet-overlay-pane {
    z-index: 400 !important;
}

.contact {
    background: var(--cream);
    position: relative;
}

.say-hi {
    background: linear-gradient(to bottom, var(--warm-beige) 0%, var(--cream) 100%);
    padding-bottom: 2rem;
}

.professional {
    background: linear-gradient(to bottom, var(--cream) 0%, var(--warm-beige) 100%);
    padding-top: 2rem;
}

/* Subtle baking-inspired pattern */
.contact::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244, 160, 156, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--charcoal);
    font-weight: 400;
    position: relative;
    letter-spacing: -1px;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--rose-gold);
    border-radius: 2px;
}

section p {
    font-size: 1.1rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: var(--warm-gray);
    line-height: 1.8;
    margin-top: 2rem;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background: white;
    color: var(--charcoal);
    box-shadow: var(--shadow-soft);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.social-link.instagram {
    border-color: #E4405F;
    color: #E4405F;
}

.social-link.instagram:hover {
    background: #E4405F;
    color: white;
}

.social-link.facebook {
    border-color: #1877f2;
    color: #1877f2;
}

.social-link.facebook:hover {
    background: #1877f2;
    color: white;
}

.social-link.linkedin {
    border-color: #0077b5;
    color: #0077b5;
}

.social-link.linkedin:hover {
    background: #0077b5;
    color: white;
}

.social-link.email {
    border-color: #ea4335;
    color: #ea4335;
}

.social-link.email:hover {
    background: #ea4335;
    color: white;
}

.social-link.email:hover {
    background: #ea4335;
    color: white;
}

.social-icon {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.social-link:hover .social-icon {
    transform: scale(1.1);
}

.social-text {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Bakery Section */
.bakery-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(244, 160, 156, 0.3);
    text-align: center;
}

.bakery-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--rose-gold);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.bakery-section p {
    font-size: 1.1rem;
    color: var(--warm-gray);
    margin-bottom: 2rem;
}

.bakery-section .social-links {
    margin-top: 2rem;
}

/* Add a subtle bakery icon or decoration */
.bakery-section h3::before {
    content: '🐝';
    display: block;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2d2d2d, #3d3d3d);
    color: var(--cream);
    text-align: center;
    padding: 2.5rem 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '♥ ♥ ♥';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 100px;
    opacity: 0.03;
    letter-spacing: 50px;
}

footer p {
    position: relative;
    z-index: 2;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* Subtle animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
    }
    
    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    main {
        margin-top: 120px;
    }
    
    .about-content {
        gap: 3rem;
    }
    
    .about-section {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .about-section.professional-life {
        flex-direction: column;
    }
    
    .about-image {
        flex: none;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .debate-images-container {
        flex-direction: column;
        align-items: center;
    }
    
    .debate-image-wrapper {
        flex: 0 0 100%;
        max-width: 350px;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .about-text p {
        text-align: center;
        font-size: 1rem;
    }
    
    section h2 {
        font-size: 2.2rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .social-link {
        width: 250px;
        justify-content: center;
    }
    
    #world-map {
        height: 400px;
    }
    
    /* Ensure map is touch-friendly on mobile */
    .leaflet-container {
        touch-action: pan-x pan-y;
    }
    
    /* Larger touch targets for mobile */
    .leaflet-marker-icon.custom-marker {
        width: 40px !important;
        height: 40px !important;
    }

    .leaflet-marker-icon.custom-marker div {
        width: 16px;
        height: 16px;
    }
    
    section {
        padding: 60px 0;
    }
}

/* Loading state */
.loading {
    background: linear-gradient(90deg, #f5f5f5 25%, #e0e0e0 50%, #f5f5f5 75%);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--rose-gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--deep-teal);
}
/* Winner Gamete Subtext */
.winner-gamete-subtext {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: var(--warm-gray);
    font-style: normal;
    letter-spacing: 1px;
    opacity: 0.4;
    margin-top: -1rem;
    margin-bottom: 3rem;
    font-weight: 300;
    text-transform: lowercase;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .winner-gamete-subtext {
        font-size: 0.7rem;
        margin-top: -0.8rem;
        margin-bottom: 2rem;
    }
}