/* Navbar */
.scroll-smooth {
    scroll-behavior: smooth;
    background-color: #1b1d21;
  }
  .sticky {
    position: sticky;
  }
  .top-0 {
    top: 0;
  }
  .z-20 {
    z-index: 20;
  }
  .h-14 {
    height: 3.5rem;
  }
  .w-full {
    width: 100%;
  }
  .bg-resume-800 {
    background-color: #2e4052;
  }
  .flex {
    display: flex;
  }
  .py-2{
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }
  .px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .xl\\:px-60 {
    @media (min-width: 1280px) {
      padding-left: 15rem;
      padding-right: 15rem;
    }
  }
  .items-center {
    align-items: center;
  }
  .shadow-level-8dp {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.24), 0 0 2px rgba(0, 0, 0, 0.24);
  }
  .flex-auto {
    flex: 1 1 auto;
  }
  .justify-between {
    justify-content: space-between;
  }
  .ml-5 {
    margin-left: 1.25rem;
  }
  
  /* Button */
  button {
    font-size: 1rem;
    line-height: 1.5rem;
    border-radius: 0.375rem;
    border: none;
    cursor: pointer;
    padding: 0.5rem 1rem;
    color: white;
    background-color: #1a202c;
  }
  button:focus,
  button:hover {
    background-color: #4a5568;
  }
  
  /* Link */
  a {
    text-decoration: none;
    color: inherit;
  }
  a:focus,
  a:hover {
    color: #f56565;
  }
  
  /* Gradient background */
  .linear-gradient {
    background: linear-gradient(180deg, #e7eefa 50%, #ffffff 100%);
  }
  
  /* Typography */
  body {
    font-family: "Roboto Slab", serif;
  }
  .text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .text-resume-400 {
    color: white;
  }
  .text-5xl {
    font-size: 3rem;
    line-height: 3.5rem;
  }
  .text-resume-800 {
    color: #1a202c;
  }
  .text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .bg-resume-50 {
    background-color: #f7fafc;
  }
  .text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  strong {
    font-weight: bold;
  }
  
  /* Grid */
  .grid {
    display: grid;
    max-width: 100vw !important;
  }
  .grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .col-span-12 {
    grid-column: span 12 / span 12;
  }
  .col-span-8 {
    grid-column: span 8 / span
  }  

  .NavBarActions {
    display: flex;
    align-items: center;
  }
  
  /* Define styles for button element */
  button {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    background-color: #1c1c1e;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.25rem;
    transition: all 0.2s ease-in-out;
  }
  
  button:hover {
    cursor: pointer;
    background-color: #28282a;
  }
  
  /* Define styles for FeatureSection component */
  .FeatureSection {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .FeatureSection__icon {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
  }
  
  .FeatureSection__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  
  .FeatureSection__description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  /* Define styles for Image component */
  .Image {
    display: block;
    margin: auto;
    width: 10rem;
  }
  
  /* Define styles for contribute section */
  #contribute {
    background-color: #f9fafb;
  }
  
  #contribute p {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  #contribute .text-xl {
    font-size: 2rem;
    margin-top: 0.5rem;
  }
  
  #contribute .text-4xl {
    font-size: 6rem;
  }
  
  #contribute .mb-6 {
    max-width: 10rem;
  }