body {
    font-family: 'Alfa Slab One', serif;
  }

  body {
    margin: 0;
    font-family: 'Alfa Slab One', serif;
    background-color: #fffdf9;
    color: #1a1a1a;
  }
  
  /* LOGO + CAN IMAGE STYLING */
  .logo-section img,
  .can-section img {
    display: block;
    width: 100%;
    height: auto;
  }
  
  /* BLURB STYLING */
  .blurb-section {
    padding: 2rem 1rem;
    background-color: #f3e9e3;
    text-align: center;
  }
  
  .blurb-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
  }
  
  .blurb-section p {
    font-family: sans-serif;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    color: #8B1F2F;
    font-weight: bold;
  }
  
  /* MEDIA QUERIES FOR DESKTOP */
  @media (min-width: 768px) {
    .blurb-section {
      padding: 4rem 2rem;
    }
  
    .blurb-section h2 {
      font-size: 2.25rem;
    }
  
    .blurb-section p {
      font-size: 1.2rem;
    }
  }