* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'IBM Plex Mono', sans-serif;
    background-color: #1f1f1f;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    text-align: center;
    padding: 1.5rem;
    background: url(rohit-choudhari-t87AzqfIg3w-unsplash.jpg);
    background-size: cover;
    backdrop-filter: brightness(0.4) hue-rotate(233deg);
  }
  img
  {
    width: 50px;
    user-select: none;
    pointer-events: none;
  }
  h1 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    font-weight: 400;
    text-shadow: 0px 0px 1px #0000007d;
  }
  p {
    font-size: 1.125rem;
    max-width: 600px;
    line-height: 1.6;
    text-shadow: 0px 0px 1px #0000007d;
  }
  code {
    background: #eee;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: 'IBM Plex Mono';
    font-weight: 500;
    display: block;
    margin: 0 auto;
    width: max-content;
    margin-bottom: 20px;
    color:#111;
  }
  code a{
    color:#111;
    text-decoration: none;
  }
  code a:hover{
    text-decoration: underline;
  }
  .example {
    margin-top: 3rem;
    font-size: 1rem;
    color: white;
    text-shadow: 0px 0px 1px #0000007d;
  }
  footer {
    position: absolute;
    bottom: 1rem;
    font-size: 0.875rem;
  }
  footer p{
    font-size: 0.875rem;
  }
  footer a{
    text-decoration: none;
    color:white;
  }
  footer a:hover{
    text-decoration: underline;
  }