    body {
      background-image: url("/static/bosak.jpg");
      background-repeat: repeat;
      color: #fff;
      background-size: auto;

      font-family: "Comic Relief", system-ui;
      font-weight: 400;
      font-style: normal;
    }

    @media (max-width: 768px) {
      body {
        background-repeat: repeat;
        background-position: center;
      }
    }

    .floating-sidebar {
      position: fixed;
      top: 50%;
      right: 20px;
      transform: translateY(-50%);
      display: none;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    @media (max-width: 768px) {
      .floating-sidebar {
        top: 92%;
        right: 0;
        gap: 2px;
      }
    }

    .floating-sidebar.shake {
      animation: shake 0.8s ease-in-out;
    }

    @keyframes shake {
      0% {
        transform: translateX(0);
      }

      25% {
        transform: translateX(-5px);
      }

      50% {
        transform: translateX(5px);
      }

      75% {
        transform: translateX(-5px);
      }

      100% {
        transform: translateX(0);
      }
    }

    .container {
      background: rgba(76, 175, 80, 0.8);
    }

    p {
      background: rgba(104, 60, 200, 0.7);
      padding: 1rem;
    }

    .footer {
      display: none;
      padding: 10px;
      text-align: center;
      width: 100%;
    }

    .footer p {
      margin: 0;
      color: #bfbfbf;
    }

    .toggle-button {
      background-color: #4CAF50;
      color: white;
      padding: 10px 20px;
      text-align: center;
      text-decoration: none;
      display: inline-block;
      font-size: 16px;
      border-radius: 5px;
      margin-bottom: 10px;
      position: absolute;
      top: 0;
      right: 0;
    }

    svg {
      height: 25px;
    }

    .btn-gradient {
      background: #22C1C3;
      background: linear-gradient(0deg, rgba(34, 193, 195, 1) 0%, rgba(253, 187, 45, 1) 100%);
    }