@import "tailwindcss";

@layer base {
  body {
    background-repeat: repeat;
    min-height: 100vh;
    font-family: 'Lato', sans-serif;
  }
}

@layer components {
  .site-nav a {
    font-family: 'Lato', sans-serif;
    color: #6b7280;
    padding: 0.5rem 1rem;
    display: block;
    border-bottom: 5px solid transparent;
    transition: border-color 0.15s;
    white-space: nowrap;
  }

  .site-nav a:hover {
    border-bottom-color: #54585b;
  }

  @media (min-width: 1024px) {
    .site-nav a {
      font-size: 1.5rem;
    }
  }

  .bottom-cat {
    width: 155px;
    height: 195px;
    margin-top: -20px;
    background-repeat: no-repeat;
    flex-shrink: 0;
  }
}
