:root {
  --bg-main: #09090b;
  --bg-card: #121215;
  --bg-card-hover: #18181c;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(255, 255, 255, 0.18);
  --accent-emerald: #10b981;
  --accent-cyan: #06b6d4;
  --accent-indigo: #6366f1;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  background-color: var(--bg-main);
  color: #f4f4f5;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  overflow-x: hidden;
}

/* Custom Sleek Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #09090b;
}
::-webkit-scrollbar-thumb {
  background: #27272a;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #3f3f46;
}

/* Subtle Ambient Background Grid */
.bg-grid-pattern {
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

.bg-radial-gradient {
  background: radial-gradient(circle 800px at 50% -100px, rgba(16, 185, 129, 0.07), transparent 70%);
}

/* Spotlight Card Effect */
.spotlight-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.spotlight-card:hover {
  border-color: var(--border-focus);
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.7);
}

.spotlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 255, 255, 0.06),
    transparent 40%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.spotlight-card:hover::before {
  opacity: 1;
}

/* Monospace Micro Labels */
.font-mono-code {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}
.hero-text {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.hero-text.visible {
  opacity: 1;
  transform: translateY(0);
}
.portfolio-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}
.skill-icon {
  transition: transform 0.3s ease;
  opacity: 0;
  transform: scale(0.8);
}
.skill-icon.visible {
  opacity: 1;
  transform: scale(1);
}
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}
a,
button {
  transition: all 0.3s ease-in-out;
}

img {
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

section {
  transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out;
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.3);
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease-out;
}

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

@media (max-width: 768px) {
  .parallax {
    background-attachment: scroll;
  }

  /* Mobile Experience Section */
  .experience-timeline {
    padding-left: 0;
  }

  .experience-card {
    margin-bottom: 2rem;
  }

  .timeline-dot-mobile {
    position: relative;
    margin: 1rem auto;
  }

  /* Mobile text sizing */
  .mobile-text-sm {
    font-size: 0.875rem;
  }

  .mobile-text-base {
    font-size: 1rem;
  }

  /* Mobile spacing adjustments */
  .mobile-space-y-4 > * + * {
    margin-top: 1rem;
  }

  .mobile-space-y-6 > * + * {
    margin-top: 1.5rem;
  }
}

.icon-box {
  position: relative;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.icon-box li {
  position: relative;
  list-style: none;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  transform: rotate(-30deg) skew(25deg);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.icon-box li:hover {
  transform: rotate(-30deg) skew(25deg) scale(1.15);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
}

.icon-box li::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  border-radius: 10%;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.icon-box li:hover::before {
  opacity: 1;
}

.icon-box li p {
  transform: rotate(30deg) skew(-25deg);
  margin-top: 90px;
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  letter-spacing: 0.8px;
  transition: all 0.3s ease;
}

.icon-box li:hover p {
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
  transform: rotate(30deg) skew(-25deg) scale(1.05);
}

.icon-box li span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex !important;
  justify-content: center;
  align-items: center;
  font-size: 32px !important;
  border-radius: 12%;
  color: white;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.1);
}

.icon-box li:hover span:nth-child(5) {
  transform: translate(45px, -45px);
  opacity: 1;
  filter: brightness(1.2);
}

.icon-box li:hover span:nth-child(4) {
  transform: translate(35px, -35px);
  opacity: 0.85;
  filter: brightness(1.1);
}

.icon-box li:hover span:nth-child(3) {
  transform: translate(25px, -25px);
  opacity: 0.7;
  filter: brightness(1.05);
}

.icon-box li:hover span:nth-child(2) {
  transform: translate(15px, -15px);
  opacity: 0.5;
  filter: brightness(1.02);
}

.icon-box li:hover span:nth-child(1) {
  transform: translate(5px, -5px);
  opacity: 0.3;
  filter: brightness(1.01);
}

.tech-js span {
  background: #f7df1e; /* أصفر JavaScript */
  color: #000 !important;
}
.tech-react span {
  background: #61dafb; /* أزرق React */
  color: #000;
}
.tech-css span {
  background: #264de4; /* أزرق CSS */
  color: #fff;
}
.tech-python span {
  background: #3776ab; /* أزرق Python */
  color: #ffd845;
}
.tech-node span {
  background: #3c873a; /* أخضر NodeJS */
  color: #fff;
}
.tech-nextjs span {
  background: #000000; /* أسود NextJS */
  color: #fff;
}
.tech-typescript span {
  background: #3178c6; /* أزرق TypeScript */
  color: #fff;
}
.tech-tailwind span {
  background: #06b6d4; /* سماوي Tailwind */
  color: #fff;
}
.tech-html span {
  background: #e34f26; /* برتقالي HTML5 */
  color: #fff;
}
.tech-vue span {
  background: #4fc08d; /* أخضر Vue.js */
  color: #fff;
}
.tech-express span {
  background: #68a063; /* أخضر Express */
  color: #fff;
}
.tech-mongodb span {
  background: #47a248; /* أخضر MongoDB */
  color: #fff;
}
.tech-postgresql span {
  background: #336791; /* أزرق PostgreSQL */
  color: #fff;
}
.tech-git span {
  background: #f05032; /* برتقالي Git */
  color: #fff;
}
.tech-railway span {
  background: #0b0d0e; /* أسود Railway */
  color: #fff;
}
.tech-docker span {
  background: #2496ed; /* أزرق Docker */
  color: #fff;
}
.tech-aws span {
  background: #ff9900; /* برتقالي AWS */
  color: #000;
}
.tech-figma span {
  background: #f24e1e; /* برتقالي Figma */
  color: #fff;
}
.tech-photoshop span {
  background: #31a8ff; /* أزرق Photoshop */
  color: #fff;
}
.tech-linux span {
  background: #fcc624; /* أصفر Linux */
  color: #000;
}
.tech-npm span {
  background: #cb3837; /* أحمر NPM */
  color: #fff;
}

/* Terminal Animation Styles */
.typing-animation {
  overflow: hidden;
  border-right: 2px solid #00ff00;
  white-space: nowrap;
  animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

.typing-delay-1 {
  animation: fadeInUp 0.5s ease-out 1s both;
}
.typing-delay-2 {
  animation: fadeInUp 0.5s ease-out 1.5s both;
}
.typing-delay-3 {
  animation: fadeInUp 0.5s ease-out 2s both;
}
.typing-delay-4 {
  animation: fadeInUp 0.5s ease-out 2.5s both;
}
.typing-delay-5 {
  animation: fadeInUp 0.5s ease-out 3s both;
}
.typing-delay-6 {
  animation: fadeInUp 0.5s ease-out 3.5s both;
}
.typing-delay-7 {
  animation: fadeInUp 0.5s ease-out 4s both;
}
.typing-delay-8 {
  animation: fadeInUp 0.5s ease-out 4.5s both;
}
.typing-delay-9 {
  animation: fadeInUp 0.5s ease-out 5s both;
}
.typing-delay-10 {
  animation: fadeInUp 0.5s ease-out 5.5s both;
}
.typing-delay-11 {
  animation: fadeInUp 0.5s ease-out 6s both;
}
.typing-delay-12 {
  animation: fadeInUp 0.5s ease-out 6.5s both;
}
.typing-delay-13 {
  animation: fadeInUp 0.5s ease-out 7s both;
}
.typing-delay-14 {
  animation: fadeInUp 0.5s ease-out 7.5s both;
}
.typing-delay-15 {
  animation: fadeInUp 0.5s ease-out 8s both;
}
.typing-delay-16 {
  animation: fadeInUp 0.5s ease-out 8.5s both;
}
.typing-delay-17 {
  animation: fadeInUp 0.5s ease-out 9s both;
}
.typing-delay-18 {
  animation: fadeInUp 0.5s ease-out 9.5s both;
}
.typing-delay-19 {
  animation: fadeInUp 0.5s ease-out 10s both;
}
.typing-delay-20 {
  animation: fadeInUp 0.5s ease-out 10.5s both;
}
.typing-delay-21 {
  animation: fadeInUp 0.5s ease-out 11s both;
}
.typing-delay-22 {
  animation: fadeInUp 0.5s ease-out 11.5s both;
}
.typing-delay-23 {
  animation: fadeInUp 0.5s ease-out 12s both;
}

.cursor-blink {
  animation: blink 1s infinite;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: #00ff00;
  }
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

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

/* Premium Page Animations */
.fade-in {
  animation: fadeIn 1s ease-out;
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out;
}

.slide-in-up {
  animation: slideInUp 0.8s ease-out;
}

.scale-in {
  animation: scaleIn 0.6s ease-out;
}

.rotate-in {
  animation: rotateIn 0.8s ease-out;
}

.bounce-in {
  animation: bounceIn 1s ease-out;
}

.flip-in {
  animation: flipIn 0.8s ease-out;
}

.zoom-in {
  animation: zoomIn 0.6s ease-out;
}

.float {
  animation: float 3s ease-in-out infinite;
}

.pulse-glow {
  animation: pulseGlow 2s ease-in-out infinite;
}

.shimmer {
  animation: shimmer 2s ease-in-out infinite;
}

.wiggle {
  animation: wiggle 0.5s ease-in-out;
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-180deg) scale(0.8);
  }
  to {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes flipIn {
  from {
    opacity: 0;
    transform: perspective(400px) rotateY(-90deg);
  }
  to {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 5px rgba(59, 130, 246, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.8),
      0 0 30px rgba(59, 130, 246, 0.6);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes wiggle {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(5deg);
  }
  75% {
    transform: rotate(-5deg);
  }
}

/* Staggered animations */
.animate-delay-100 {
  animation-delay: 0.1s;
}
.animate-delay-200 {
  animation-delay: 0.2s;
}
.animate-delay-300 {
  animation-delay: 0.3s;
}
.animate-delay-400 {
  animation-delay: 0.4s;
}
.animate-delay-500 {
  animation-delay: 0.5s;
}
.animate-delay-600 {
  animation-delay: 0.6s;
}
.animate-delay-700 {
  animation-delay: 0.7s;
}
.animate-delay-800 {
  animation-delay: 0.8s;
}
.animate-delay-900 {
  animation-delay: 0.9s;
}
.animate-delay-1000 {
  animation-delay: 1s;
}

/* Hover animations */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hover-glow {
  transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
}

.hover-scale {
  transition: transform 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
}

.hover-rotate {
  transition: transform 0.3s ease;
}

.hover-rotate:hover {
  transform: rotate(5deg);
}

/* Scroll-triggered animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 13rem;
  overflow: hidden;
  height: 3rem;
  background-size: 300% 300%;
  cursor: pointer;
  backdrop-filter: blur(1rem);
  border-radius: 5rem;
  transition: 0.5s;
  animation: gradient_301 5s ease infinite;
  border: double 4px transparent;
  background-image: linear-gradient(#212121, #212121),
    linear-gradient(
      137.48deg,
      #ffdb3b 10%,
      #fe53bb 45%,
      #8f51ea 67%,
      #0044ff 87%
    );
  background-origin: border-box;
  background-clip: content-box, border-box;
}

#container-stars {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: 0.5s;
  backdrop-filter: blur(1rem);
  border-radius: 5rem;
}

strong {
  z-index: 2;
  font-family: "Avalors Personal Use";
  font-size: 12px;
  letter-spacing: 5px;
  color: #ffffff;
  text-shadow: 0 0 4px white;
}

#glow {
  position: absolute;
  display: flex;
  width: 12rem;
}

.circle {
  width: 100%;
  height: 30px;
  filter: blur(2rem);
  animation: pulse_3011 4s infinite;
  z-index: -1;
}

.circle:nth-of-type(1) {
  background: rgba(254, 83, 186, 0.636);
}

.circle:nth-of-type(2) {
  background: rgba(142, 81, 234, 0.704);
}

.btn:hover #container-stars {
  z-index: 1;
  background-color: #212121;
}

.btn:hover {
  transform: scale(1.1);
}

.btn:active {
  border: double 4px #fe53bb;
  background-origin: border-box;
  background-clip: content-box, border-box;
  animation: none;
}

.btn:active .circle {
  background: #fe53bb;
}

#stars {
  position: relative;
  background: transparent;
  width: 200rem;
  height: 200rem;
}

#stars::after {
  content: "";
  position: absolute;
  top: -10rem;
  left: -100rem;
  width: 100%;
  height: 100%;
  animation: animStarRotate 90s linear infinite;
}

#stars::after {
  background-image: radial-gradient(#ffffff 1px, transparent 1%);
  background-size: 50px 50px;
}

#stars::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 170%;
  height: 500%;
  animation: animStar 60s linear infinite;
}

#stars::before {
  background-image: radial-gradient(#ffffff 1px, transparent 1%);
  background-size: 50px 50px;
  opacity: 0.5;
}

@keyframes animStar {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-135rem);
  }
}

@keyframes animStarRotate {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0);
  }
}

@keyframes gradient_301 {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes pulse_3011 {
  0% {
    transform: scale(0.75);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }

  100% {
    transform: scale(0.75);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

/* Spinner Animation for Send Message Button */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #ffffff40;
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: spin 1s ease-in-out infinite;
  margin-right: 8px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.button-loading {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

.button-loading .spinner {
  display: inline-block;
}

.button-loading .button-text {
  opacity: 0.5;
}

/* Premium Status Message Design */
.status-message {
  position: relative;
  padding: 1rem 1.5rem;
  margin: 1rem 0;
  border-radius: 12px;
  font-weight: 500;
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
  border: 1px solid transparent;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: statusSlideIn 0.5s ease-out;
  overflow: hidden;
}

.status-message::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shimmer 2s infinite;
}

.status-message::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: slideShine 1.5s ease-out;
}

/* Success Message Styling */
.status-success {
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.15),
    rgba(22, 163, 74, 0.1)
  );
  border-color: rgba(34, 197, 94, 0.3);
  color: #10b981;
  border-left: 4px solid #10b981;
}

.status-success::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(16, 185, 129, 0.5),
    transparent
  );
}

/* Error Message Styling */
.status-error {
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.15),
    rgba(220, 38, 38, 0.1)
  );
  border-color: rgba(239, 68, 68, 0.3);
  color: #ef4444;
  border-left: 4px solid #ef4444;
}

.status-error::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(239, 68, 68, 0.5),
    transparent
  );
}

/* Status Message Icons */
.status-message .status-icon {
  display: inline-block;
  margin-right: 0.75rem;
  font-size: 1.2rem;
  animation: bounceIn 0.6s ease-out;
}

.status-message .status-text {
  display: inline-block;
  vertical-align: middle;
}

/* Status Message Animations */
@keyframes statusSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

@keyframes statusPulse {
  0%,
  100% {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(16, 185, 129, 0.3);
  }
}

.status-success {
  animation: statusSlideIn 0.5s ease-out, statusPulse 2s ease-in-out infinite;
}

/* Premium Button Hover Effects */
.status-message:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
  .status-message {
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
    margin: 0.75rem 0;
  }

  .status-message .status-icon {
    margin-right: 0.5rem;
    font-size: 1.1rem;
  }
}
