.logo {
    display: inline-block;
    font-family: Arial, sans-serif;
    font-size: 2rem;
    color: #333;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    background-color: #f8f9fa;
    border: 1px solid #333;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .logo__text {
    position: relative;
    display: inline-block;
  }
  
  .logo__text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 10px;
    height: 100%;
    background-color: #333;
  }
  
  .footer__top {
      font-family: 'Roboto', sans-serif;
      font-weight: 100;
  }