/* ============================================
   TEMMY PORTFOLIO — Pure HTML/CSS/JS
   Edit anything freely. No build needed.
   ============================================ */

/* ============================================
   VARIABLES
   ============================================ */
:root {
  --black: #000000;
  --ivory: #eeece2;
  --ash: #a3a3a3;
  --gold: #c9a96e;
  --gold-light: #d4b97a;
  --warm-light: #f5f3ed;
  --dark-gray: #111111;
  --med-gray: #1a1a1a;
  --accent-crypto: #4fc3f7;
  --accent-home: #c9a96e;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(201, 169, 110, 0.3);
  color: var(--ivory);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ============================================
   SHARED COMPONENTS
   ============================================ */

.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-label.light { color: var(--gold-light); }

.circular-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--ivory);
  border-radius: 50px;
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ivory);
  cursor: pointer;
  transition: color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.circular-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ivory);
  border-radius: 50px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.circular-btn:hover::before { transform: scaleX(1); }

.circular-btn span {
  position: relative;
  z-index: 1;
  mix-blend-mode: difference;
}

/* Gold button */
.circular-btn.gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.circular-btn.gold::before { background: var(--black); }
.circular-btn.gold span { mix-blend-mode: normal; }
.circular-btn.gold:hover { color: var(--gold); }

/* Outline button */
.circular-btn.outline {
  background: transparent;
  border-color: rgba(238, 236, 226, 0.4);
  color: var(--ivory);
}

.circular-btn.large { padding: 16px 36px; font-size: 14px; }

/* Explore link */
.explore-link {
  position: relative;
  display: inline-block;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  cursor: pointer;
}
.explore-link .primary,
.explore-link .secondary {
  display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.explore-link .secondary {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(100%);
}
.explore-link:hover .primary { transform: translateY(-100%); }
.explore-link:hover .secondary { transform: translateY(0); }


/* ============================================
   HEADER
   ============================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 60px;
  background: transparent;
  transition: background 0.4s, backdrop-filter 0.4s;
}

#header.scrolled {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

#header .logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ivory);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.desktop-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ivory);
  opacity: 0.8;
  transition: opacity 0.3s, color 0.3s;
  position: relative;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.desktop-nav a:hover { opacity: 1; color: var(--gold); }
.desktop-nav a:hover::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 60;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ivory);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:first-child { transform: rotate(45deg) translate(3px, 3px); }
.hamburger.active span:last-child { transform: rotate(-45deg) translate(3px, -3px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: rgba(0, 0, 0, 0.97);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.active { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s, color 0.3s;
}
.mobile-menu.active a { opacity: 1; transform: translateY(0); }
.mobile-menu.active a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.active a:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu a:hover { color: var(--gold); }


/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  display: flex;
}

.hero-bg-left,
.hero-bg-right {
  position: relative;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.hero-bg-left img,
.hero-bg-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero:hover .hero-bg-left img,
.hero:hover .hero-bg-right img {
  transform: scale(1);
}

.hero-bg-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}

.hero-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 7vw, 90px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--ivory);
  margin-bottom: 24px;
}

.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
}

.hero-title .line.accent {
  color: var(--gold);
  font-style: italic;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--ash);
  margin-bottom: 40px;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--ash);
  animation: bounceArrow 2s ease-in-out infinite;
  z-index: 10;
}
.hero-scroll-indicator span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

@keyframes bounceArrow {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 1; }
}


/* ============================================
   SOCIAL BAR
   ============================================ */
.social-bar {
  background: var(--warm-light);
  padding: 40px 60px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.social-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.social-bar-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--black);
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  transition: all 0.3s ease;
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.social-icon:hover {
  background: var(--black);
  color: var(--ivory);
  border-color: var(--black);
  transform: translateY(-2px);
}


/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  background: var(--warm-light);
  padding: 120px 60px;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about-portrait {
  position: relative;
  overflow: hidden;
}

.about-portrait img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.6s ease, transform 0.6s ease;
}

.about-portrait:hover img {
  filter: grayscale(0%);
  transform: scale(1.02);
}

.about-portrait::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid var(--gold);
  z-index: -1;
  opacity: 0.4;
}

.about-right {
  padding-left: 20px;
}

.about-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 32px;
}

.about-body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(0,0,0,0.7);
  margin-bottom: 20px;
}

.about-body strong {
  color: var(--black);
  font-weight: 600;
}

.about-stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.5);
  margin-top: 8px;
}


/* ============================================
   SERVICES / WHAT I DO
   ============================================ */
.services {
  background: linear-gradient(180deg, var(--dark-gray) 0%, var(--black) 100%);
  padding: 120px 60px;
}

.services-header {
  max-width: 1200px;
  margin: 0 auto 64px;
  text-align: center;
}

.services-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.1;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Service Card */
.service-card {
  background: var(--med-gray);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(238, 236, 226, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.service-card-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.08);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}

.service-card-content {
  padding: 36px;
}

.service-card-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(201, 169, 110, 0.15);
  color: var(--gold);
  margin-bottom: 16px;
}

.service-card-tag.crypto {
  background: rgba(79, 195, 247, 0.12);
  color: var(--accent-crypto);
}

.service-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 16px;
}

.service-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(238, 236, 226, 0.65);
  margin-bottom: 24px;
}

.service-card-list {
  list-style: none;
  margin-bottom: 28px;
}

.service-card-list li {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(238, 236, 226, 0.7);
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  border-bottom: 1px solid rgba(238, 236, 226, 0.05);
}

.service-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}


/* ============================================
   PROJECTS GRID
   ============================================ */
.projects {
  background: var(--black);
  padding: 100px 60px;
}

.projects-header {
  max-width: 1200px;
  margin: 0 auto 48px;
}

.projects-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  color: var(--ivory);
}

.projects-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.project-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.project-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-item:hover img {
  transform: scale(1.08);
}

.project-item-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  transform: translateY(10px);
  opacity: 0.9;
  transition: all 0.4s ease;
}

.project-item:hover .project-item-info {
  transform: translateY(0);
  opacity: 1;
}

.project-item-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 12px;
  background: rgba(201, 169, 110, 0.2);
  color: var(--gold);
  margin-bottom: 8px;
}

.project-item-tag.crypto {
  background: rgba(79, 195, 247, 0.15);
  color: var(--accent-crypto);
}

.project-item-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--ivory);
}


/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: linear-gradient(135deg, var(--dark-gray) 0%, #0a0a0a 50%, var(--dark-gray) 100%);
  padding: 120px 60px;
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ivory);
  margin-bottom: 28px;
}

.contact-body {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(238, 236, 226, 0.6);
  margin-bottom: 36px;
  max-width: 480px;
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(238, 236, 226, 0.08);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s ease;
}

.contact-card:hover {
  border-color: rgba(201, 169, 110, 0.3);
}

.contact-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 20px;
}

.contact-card p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(238, 236, 226, 0.7);
}

.contact-avail {
  margin-top: 8px;
  font-size: 13px !important;
  color: rgba(201, 169, 110, 0.7) !important;
}

.contact-socials {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.c-social {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(238, 236, 226, 0.7);
  transition: color 0.3s ease;
  border-bottom: 1px solid rgba(238, 236, 226, 0.04);
}

.c-social svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.c-social:hover {
  color: var(--gold);
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(238, 236, 226, 0.06);
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--ivory);
  display: block;
  margin-bottom: 20px;
}

.footer-brand p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(238, 236, 226, 0.5);
  max-width: 320px;
}

.footer-links-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ivory);
  margin-bottom: 24px;
}

.footer-links-col a {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(238, 236, 226, 0.5);
  padding: 6px 0;
  transition: color 0.3s ease;
}

.footer-links-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(238, 236, 226, 0.06);
}

.footer-bottom span {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(238, 236, 226, 0.35);
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

.footer-bottom a {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(238, 236, 226, 0.35);
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: var(--ash);
}


/* ============================================
   RESPONSIVE — Tablet (< 1024px)
   ============================================ */
@media (max-width: 1024px) {
  #header { padding: 0 30px; }
  .hero-title { font-size: clamp(36px, 8vw, 70px); }
  
  .about { padding: 80px 30px; }
  .about-inner { gap: 40px; }
  
  .services { padding: 80px 30px; }
  .services-grid { gap: 24px; }
  
  .projects { padding: 80px 30px; }
  
  .contact { padding: 80px 30px; }
  .contact-inner { gap: 40px; }
  
  .footer-top { padding: 60px 30px; gap: 40px; }
  .footer-bottom { padding: 20px 30px; }
}


/* ============================================
   RESPONSIVE — Mobile (< 768px)
   ============================================ */
@media (max-width: 768px) {
  #header { padding: 0 20px; }
  .desktop-nav, .desktop-only { display: none !important; }
  .hamburger { display: flex; }
  
  .hero { min-height: 100vh; }
  .hero-bg-left, .hero-bg-right { width: 100%; position: absolute; }
  .hero-bg-left { clip-path: polygon(0 0, 100% 0, 100% 55%, 0 40%); }
  .hero-bg-right { clip-path: polygon(0 45%, 100% 60%, 100% 100%, 0 100%); }
  
  .hero-title { font-size: clamp(32px, 10vw, 48px); }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .circular-btn { width: 100%; }
  
  .social-bar { padding: 24px 20px; }
  .social-bar-inner { flex-direction: column; gap: 16px; text-align: center; }
  
  .about { padding: 60px 20px; }
  .about-inner { grid-template-columns: 1fr; }
  .about-portrait { max-width: 300px; margin: 0 auto; }
  .about-portrait::before { display: none; }
  .about-right { padding-left: 0; text-align: center; }
  .about-stats { justify-content: center; gap: 32px; }
  
  .services { padding: 60px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-image { height: 200px; }
  .service-card-content { padding: 24px; }
  
  .projects { padding: 60px 20px; }
  .projects-grid { grid-template-columns: 1fr; }
  
  .contact { padding: 60px 20px; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-right { width: 100%; }
  
  .footer-top {
    grid-template-columns: 1fr;
    padding: 48px 20px;
    gap: 40px;
    text-align: center;
  }
  .footer-brand p { max-width: 100%; }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 20px;
  }
}
