  body {
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
    background-color: hsl(240, 5%, 6%);
    margin: 0px;
  }
  
  .flex {
    display: flex;
  }
  
  .flex-col {
    flex-direction: column;
  }
  
  .items-center {
    align-items: center;
  }
  
  .justify-center {
    justify-content: center;
  }
  
  .min-h-\[100dvh\] {
    min-height: 100vh;
  }
  
  .px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .md\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  
  .max-w-md {
    max-width: 28rem;
  }
  
  .w-full {
    width: 100%;
  }
  
  .rounded-full {
    border-radius: 50%;
  }

  .text-xl {
    line-height: 1.5rem;
  }
  
  .text-muted-foreground {
    color: darkgray;
  }

  .gap-4 {
    gap: 1rem;
  }

  .mb-8 {
    margin-bottom: 2rem;
  }
  
  .space-y-4 {
    margin-bottom: 1rem;
    margin-top: 3rem;
  }
  
  .text-primary {
    color: hsl(240, 0%, 90%);
  }

  .hover\:text-primary-foreground:hover {
    color: hsl(60, 0%, 0%);
  }
  
  .transition-colors {
    transition-property: color;
    transition-duration: 0.2s;
  }
  
  .p-2 {
    padding: 0.5rem;
  }

  .hover\:bg-primary:hover {
    background-color: hsl(240, 0%, 80%);
  }
  
  .rounded-lg {
    border-radius: 0.5rem;
  }
  
  .w-6 {
    width: 1.5rem;
  }
  
  .h-6 {
    height: 1.5rem;
  }

  .banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 2em;
    margin-top: 2em;
  }

  .banner p {
    background: var(--c-black);
    color: var(--c-white);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em;
    padding: 1em 1.5em;
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
    font-weight: 900;
    text-transform: uppercase;
    background-color: white;
  }