:root {
    --bg: #1e293b;
    --text: #f1f5f9;
    --accent: #facc15;
  }

  body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  @font-face {
    font-family: 'MontserratCustom';
    src: url('cambria-math.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    }

    .font-montserrat {
    font-family: 'MontserratCustom', sans-serif;
    }

  .neumorphism {
    background: var(--bg);
    border-radius: 20px;
    box-shadow: 8px 8px 16px rgba(0,0,0,0.1), -8px -8px 16px rgba(255,255,255,0.05);
    transition: all 0.3s ease;
  }

  .neumorphism:hover {
    transform: scale(1.02);
    box-shadow: 10px 10px 20px rgba(0,0,0,0.15), -10px -10px 20px rgba(255,255,255,0.03);
  }

  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s forwards;
  }

  @keyframes fadeIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .glow:hover {
    box-shadow: 0 0 10px var(--accent), 0 0 20px var(--accent);
  }
  @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .animate-fadeInUp {
      animation: fadeInUp 0.8s ease forwards;
    }

    .portrait-image {
      grid-column: span 1.5; /* Makes portrait images span across two columns */
      grid-row: span 1.5; /* Makes portrait images span across two rows */
      object-fit: contain; /* Ensures the image fits within its container */
      height: auto;
    }

    .landscape-image {
      width: 100%; /* Ensures the image takes the full width of its container */
      height: auto; /* Maintains the aspect ratio of the image */
      object-fit: contain; /* Ensures the entire image is visible */
    }
    @media (max-width: 640px) {
      .portrait-image {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
      }
    }

