    * {
      margin: inherit;
      padding: inherit;
      box-sizing: inherit;
    }
    html, body {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      height: 100vh;
      width: 100vw;
      overflow: hidden;
    }
    .wrapper {
      display: flex;
      height: 100%;
      width: 100%;
    }
    .sidepart {
      background: #000;
      height: 100%;
      width: calc((100% - 460px) / 2);
      padding: 0;
    }
    .midpart {
      background: #ffffdd;
      color: #222;
      width: 460px;
      height: 100%;
      transition: width 0.5s;
    }
    .embed-stijl {
      width: 100%;
      height: 100%;
      border: none;
      background: transparent;
    }

    @media (max-width: 460px) {
      .sidepart {
        background: #000;
        height: 100%;
        width: 0px;
        padding: 0;
      }
      .midpart {
        background: #ffffdd;
        color: #222;
        width: 100%;
        height: 100%;
        transition: width 0.5s;
      }
    }
