  body{
    width: 100%;
    margin: 0;
   }
     .cp-sidebody img {
            width: 100%;
            max-width: 1280px;
            height: auto;
            display: block;
            margin-left: auto;
            margin-right: auto;

        }

        .cp-sidebody {

            margin: 0 auto;
            text-align: center;
          
            vertical-align: middle;
            background-color: #f4f4f4;
        }

        .cp-desktop{
          display: block
        }

        .cp-mobile{
          display: none;
        }
         .navbar {
      background-color: black;
      color: white;
      padding: 3px 100px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
      height: 60px;
    }

    .navbar-left {
      font-size: 20px;
      font-weight: bold;
    }

    /* Overlapping logo */
    .navbar-logo {
      position: absolute;
      right: 350px; /* distance from right edge */
      top: 80%;    /* center vertically relative to navbar */
      transform: translateY(-50%); /* perfect vertical alignment */
    }

    .navbar-logo img {
      width: 100px; 
      height: 80px;
      border-radius: 4px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    }
    .maker img{
      max-width: 1500px;
    }

      @media screen and (max-width: 768px) {
          .cp-desktop{
          display: none;
        }

        .cp-mobile{
          display: block;
        }
        .navbar{
          padding: 0 30px;
          height: 40px;
        }
        .navbar img{
          width: 70%;
        }
      }