
  

  

  
  
  
  


@layer base {
  
  body, :host {
    /* Color */
    --grey-50: #FAFAFA;
--grey-100: #F5F5F5;
--grey-200: #E5E5E5;
--grey-300: #D4D4D4;
--grey-400: #A3A3A3;
--grey-500: #737373;
--grey-600: #525252;
--grey-700: #404040;
--grey-800: #262626;
--grey-900: #171717;
--red-50: #FEF2F2;
--red-100: #FEE2E2;
--red-200: #FECACA;
--red-300: #FCA5A5;
--red-400: #F87171;
--red-500: #EF4444;
--red-600: #DC2626;
--red-700: #B91C1C;
--red-800: #991B1B;
--red-900: #7F1D1D;
--blue-50: #EFF6FF;
--blue-100: #DBEAFE;
--blue-200: #BFDBFE;
--blue-300: #93C5FD;
--blue-400: #60A5FA;
--blue-500: #3B82F6;
--blue-600: #2563EB;
--blue-700: #1D4ED8;
--blue-800: #1E40AF;
--blue-900: #1E3A8A;
--lime-50: #F7FEE7;
--lime-100: #ECFCCB;
--lime-200: #D9F99D;
--lime-300: #BEF264;
--lime-400: #A3E635;
--lime-500: #84CC16;
--lime-600: #65A30D;
--lime-700: #4D7C0F;
--lime-800: #3F6212;
--lime-900: #365314;
--pink-50: #FDF2F8;
--pink-100: #FCE7F3;
--pink-200: #FBCFE8;
--pink-300: #F9A8D4;
--pink-400: #F472B6;
--pink-500: #EC4899;
--pink-600: #DB2777;
--pink-700: #BE185D;
--pink-800: #9D174D;
--pink-900: #831843;
--teal-50: #F0FDFA;
--teal-100: #CCFBF1;
--teal-200: #99F6E4;
--teal-300: #5EEAD4;
--teal-400: #2DD4BF;
--teal-500: #14B8A6;
--teal-600: #0D9488;
--teal-700: #0F766E;
--teal-800: #115E59;
--teal-900: #134E4A;
--green-50: #ECFDF5;
--green-100: #D1FAE5;
--green-200: #A7F3D0;
--green-300: #6EE7B7;
--green-400: #34D399;
--green-500: #10B981;
--green-600: #059669;
--green-700: #047857;
--green-800: #065F46;
--green-900: #064E3B;
--purple-50: #F5F3FF;
--purple-100: #EDE9FE;
--purple-200: #DDD6FE;
--purple-300: #C4B5FD;
--purple-400: #A78BFA;
--purple-500: #8B5CF6;
--purple-600: #7C3AED;
--purple-700: #6D28D9;
--purple-800: #5B21B6;
--purple-900: #4C1D95;
--yellow-50: #FFFBEB;
--yellow-100: #FEF3C7;
--yellow-200: #FDE68A;
--yellow-300: #FCD34D;
--yellow-400: #FBBF24;
--yellow-500: #F59E0B;
--yellow-600: #D97706;
--yellow-700: #B45309;
--yellow-800: #92400E;
--yellow-900: #78350F;
--dark-green: #112D25;
--light-green: #C4EAB9;
--dark-blue: #0A3957;
--light-blue: #9DFAFF;
    /* Fonts */
    --font-sans: 'Inter',sans-serif;
--font-intertight: 'Inter Tight',sans-serif;
--font-literata: 'Literata',serif;
--font-firacode: 'Fira Code',monospace;
--font-ibmplexmono: 'IBM Plex Mono',monospace;
--font-fraunces: 'Fraunces',serif;
--font-luckiestguy: 'Luckiest Guy',display;

    /* Font size */
    --font-size-xxs: 0.625rem;
--font-size-xs: 0.75rem;
--font-size-sm: 0.875rem;
--font-size-base: 1rem;
--font-size-lg: 1.125rem;
--font-size-xl: 1.25rem;
--font-size-2xl: 1.5rem;
--font-size-3xl: 1.875rem;
--font-size-4xl: 2.25rem;
--font-size-5xl: 3rem;
    /* Font weight */
    --font-weight-thin: 100;
--font-weight-lighter: 200;
--font-weight-light: 300;
--font-weight-regular: 400;
--font-weight-normal: 500;
--font-weight-bold: 700;
--font-weight-semi-bold: 600;
--font-weight-bolder: 800;
--font-weight-black: 900;
    /* Shadows */
    --shadow-sm:  0 1px 2px 0 rgba(0, 0, 0, 0.25);
--shadow-base:  0 1px 3px 0 rgba(0, 0, 0, 0.25), 0 1px 2px 0 rgba(0, 0, 0, 0.25);
--shadow-md:  0 4px 6px -1px rgba(0, 0, 0, 0.25), 0 2px 4px -1px rgba(0, 0, 0, 0.25);
--shadow-lg:  0 10px 15px -3px rgba(0, 0, 0, 0.25), 0 4px 6px -2px rgba(0, 0, 0, 0.25);
--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.25), 0 10px 10px -5px rgba(0, 0, 0, 0.25);
--shadow-2xl:  0 25px 50px -12px rgba(0, 0, 0, 0.25);
    /* Border radius */
    
    /* Spacing */
    
    /* Z-index */
    
  }
  @keyframes animation-spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  @keyframes animation-fade-in {
    from {
      opacity:0;
    }
    to {
      opacity:1;
    }
  }
  @keyframes animation-fade-out {
    from {
      opacity:1;
    }
    to {
      opacity:0;
    }
  }
}

      
  .FUGwJ {
    display:flex;
  background:var(--grey-50);
  min-height:100vh;
  align-items:center;
  padding-top:2rem;
  padding-left:2rem;
  padding-right:2rem;
  padding-bottom:2rem;
  justify-content:flex-start;
  }
      

      
        
      
      
  .eCiRrK {
    max-width:700px;
  text-align:left;
  }
      

      
        
      
      
  .CsoRn {
    top:0px;
  left:0px;
  width:100%;
  height:100%;
  position:absolute;
  object-fit:cover;
  border-top-left-radius:0.5rem;
  border-top-right-radius:0.5rem;
  border-bottom-left-radius:0.5rem;
  border-bottom-right-radius:0.5rem;
  }
      

      
        
      
      
  
      

      
        
      
      
  .cIwgxL {
    font-size:inherit;
  font-family:inherit;
  font-weight:inherit;
  padding-top:0.5rem;
  padding-left:0.5rem;
  padding-right:0.5rem;
  padding-bottom:0.5rem;
  border-top-left-radius:0.5rem;
  border-top-right-radius:0.5rem;
  border-bottom-left-radius:0.5rem;
  border-bottom-right-radius:0.5rem;
  }
      

      
  .cIwgxL:hover {
    background:var(--grey-200);
  }
      

        
      
      
  .bioWZF {
    flex:1;
  translate:0 0 0;
  transition:all 300ms cubic-bezier(0.42, 0, 0.58, 1);
  aspect-ratio:1/1;
  }
      

      
  .bioWZF:hover {
    translate:0 -12px 0;
  }
      

        
      
      
  .cRRTeL {
    display:flex;
  row-gap:1rem;
  font-size:var(--font-size-base);
  column-gap:1rem;
  align-items:center;
  font-family:Inter;
  flex-direction:row;
  justify-content:flex-end;
  }
      

      
        
      
      
  .frmNJd {
    width:100%;
  display:flex;
  row-gap:2rem;
  column-gap:2rem;
  align-items:flex-start;
  justify-content:flex-start;
  }
      

      
        
      
      
  .cOUOQi {
    width:20px;
  height:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  }
      

      
        
      
      
  .cxycRN {
    gap:2rem;
  width:100%;
  display:grid;
  align-items:flex-start;
  grid-template:auto / 1fr 1fr 1fr;
  justify-content:flex-start;
  }
      

      
          @media (max-width: 768px) {
            
  .cxycRN {
    grid-template:auto / 1fr 1fr;
  }
      

          }
          

          @media (max-width: 640px) {
            
  .cxycRN {
    grid-template:auto / 1fr;
  }
      

          }
          
        
      
      
  .eyVPLS {
    font-size:inherit;
  font-family:inherit;
  font-weight:inherit;
  }
      

      
        
      
      
  .eNLZCU {
    flex:1;
  width:100%;
  display:flex;
  row-gap:1rem;
  column-gap:1rem;
  align-items:center;
  flex-direction:row;
  justify-content:flex-start;
  }
      

      
        
      
      
  .dEOrim {
    width:100%;
  display:flex;
  row-gap:8rem;
  max-width:1400px;
  column-gap:8rem;
  align-items:center;
  justify-content:flex-start;
  }
      

      
        
      
      
  .eOJKrF {
    color:black;
  cursor:pointer;
  font-family:Luckiest Guy;
  user-select:none;
  -webkit-text-stroke:2px black;
  }
      

      
  .eOJKrF.style-1 {
    color:#ea8b8b;
  }
      


  .eOJKrF.style-2 {
    color:#dfe49a;
  }
      


  .eOJKrF.style-3 {
    color:#8ec4c7;
  }
      


  .eOJKrF.style-4 {
    color:#877dd4;
  }
      

        
      
      
  .csiuZc {
    flex:1;
  color:var(--grey-900);
  display:block;
  }
      

      
          @media (max-width: 640px) {
            
  .csiuZc {
    display:none;
  }
      

          }
          
        
      
      
  .aHiKj {
    display:flex;
  row-gap:1rem;
  column-gap:1rem;
  align-items:center;
  flex-direction:row;
  justify-content:flex-start;
  }
      

      
        
      
      
  .fiLA-DR {
    width:100%;
  display:flex;
  row-gap:1rem;
  background:var(--grey-50);
  column-gap:1rem;
  align-items:center;
  padding-top:2rem;
  aspect-ratio:1/1;
  border-color:var(--grey-900);
  border-style:solid;
  border-width:1px;
  padding-left:2rem;
  padding-right:2rem;
  flex-direction:column;
  padding-bottom:2rem;
  justify-content:center;
  border-top-left-radius:0.5rem;
  border-top-right-radius:0.5rem;
  border-bottom-left-radius:0.5rem;
  border-bottom-right-radius:0.5rem;
  }
      

      
        
      
      
  .RpdlI {
    color:var(--grey-50);
  background:var(--grey-900);
  transition:all 300ms ease;
  padding-top:0.5rem;
  border-color:var(--grey-900);
  border-style:solid;
  border-width:1px;
  padding-left:1rem;
  padding-right:1rem;
  padding-bottom:0.5rem;
  border-top-left-radius:0.5rem;
  border-top-right-radius:0.5rem;
  border-bottom-left-radius:0.5rem;
  border-bottom-right-radius:0.5rem;
  }
      

      
  .RpdlI:hover {
    transform:translateY(-4px);
  box-shadow:0px 4px 0px 0px var(--grey-900);
  transition:all 300ms ease;
  }
      

        
      
      
  .bjotZK {
    font-size:inherit;
  font-family:inherit;
  font-weight:inherit;
  padding-top:0.5rem;
  padding-left:0.5rem;
  padding-right:0.5rem;
  padding-bottom:0.5rem;
  border-top-left-radius:0.5rem;
  border-top-right-radius:0.5rem;
  border-bottom-left-radius:0.5rem;
  border-bottom-right-radius:0.5rem;
  }
      

      
  .bjotZK:hover {
    background:var(--grey-200);
  }
      

        
      
      
  .cAGJeG {
    flex:1;
  color:var(--grey-50);
  }
      

      
        
      
      
  .fDBbtP {
    flex:1;
  aspect-ratio:1/1;
  }
      

      
        
      
      
  .deTvaO {
    color:red;
  font-family:Luckiest Guy;
  padding-right:1rem;
  }
      

      
        
      
      
  .bnpvbW {
    flex:1;
  font-size:var(--font-size-3xl);
  font-weight:var(--font-weight-bold);
  }
      

      
        
      
      
  .dFnUhZ {
    width:100%;
  display:flex;
  align-items:center;
  flex-direction:row;
  justify-content:flex-start;
  }
      

      
        
      
      
  .dgTolW {
    font-size:20px;
  font-weight:var(--font-weight-bolder);
  }
      

      
        
      
      
  .PtVDT {
    width:100%;
  display:flex;
  background:linear-gradient(#00000000 0%, #00000057 100%) scroll border-box padding-box repeat repeat 0% 0% / auto;
  align-items:flex-start;
  padding-top:1rem;
  padding-left:1rem;
  padding-right:1rem;
  flex-direction:row;
  padding-bottom:1rem;
  justify-content:flex-start;
  }
      

      
        
      
      
  .dAUpdb {
    width:100%;
  display:flex;
  align-items:center;
  flex-direction:row;
  justify-content:center;
  }
      

      
        
      
      
  .NcjdX {
    font-size:4rem;
  font-family:Inter;
  font-weight:var(--font-weight-bold);
  }
      

      
        
      
      
  .bpQddx {
    transition:all 300ms ease;
  padding-top:0.5rem;
  border-color:var(--grey-900);
  border-style:solid;
  border-width:1px;
  padding-left:1rem;
  padding-right:1rem;
  padding-bottom:0.5rem;
  border-top-left-radius:0.5rem;
  border-top-right-radius:0.5rem;
  border-bottom-left-radius:0.5rem;
  border-bottom-right-radius:0.5rem;
  }
      

      
  .bpQddx:hover {
    transform:translateY(-4px);
  box-shadow:0px 4px 0px 0px var(--grey-900);
  transition:all 300ms ease;
  }
      

        
      
      
  .eIkAXo {
    width:100%;
  display:flex;
  align-items:flex-end;
  aspect-ratio:1/1;
  border-color:var(--grey-900);
  border-style:solid;
  border-width:1px;
  flex-direction:row;
  justify-content:flex-start;
  border-top-left-radius:0.5rem;
  border-top-right-radius:0.5rem;
  border-bottom-left-radius:0.5rem;
  border-bottom-right-radius:0.5rem;
  }
      

      
        
      
      
  .cJJrKc {
    text-align:center;
  }
      

      
        
      
      
  .dJAgmm {
    color:var(--grey-900);
  width:fit-content;
  height:24px;
  }
      

      
        
      