body, html {
    width: 100%;
    margin: 50px 0;
    text-align: center;
    overflow-y: hidden;
  }
  
  body {
    font-family: 'Noto Sans KR', sans-serif;
  }
  
  iframe {
    margin-top: 26px;
    width: 375px;
    height: calc(812px - 37px);
    border: none;
    right: 0;
    top: 0;
    transform: scale(0.8);
    transform-origin: 0 0;
    position: absolute;
    left: 0;
  }
  
  .container {
    font-size: 0.8px;
  }
  
  .top-safe-area {
    height: 18px;
    background: rgba(255,255,255,0);
    padding-top: 12px;
    position: absolute;
    z-index: 5;
    width: 100%;
    transition: opacity 0.4s ease-in-out;
    opacity: 1;
    display: block;
  }
  
  .transparent-status-bar-animation {
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
  }
  
  .transparent-status-bar {
    display: none;
  }
  
  .top-safe-area img {
    width: 275px;
    margin-left: 6px;
  }
  
  .black-top-safe-area {
    background: #121212;
  }
  
  .black-bottom-safe-area {
    background: #141414;
  }
  
  .grey-top-safe-area {
    background: #999999;
    transition: all 0.4s ease-in-out;
  }
  
  .grey-bottom-safe-area {
    background: #999999;
    transition: all 0.4s ease-in-out;
  }
  
  .black-bottom-safe-area .home-bar {
    background: #fff;
  }
  
  .black-top-safe-area.grey-top-safe-area {
    background: #0b0b0b;
  }
  
  .black-bottom-safe-area.grey-bottom-safe-area {
    background: #0c0c0c;
  }
  
  .black-screen {
    background: #151515 !important;
  }
  
  .grey-screen {
    background: #999999 !important;
    transition: all 0.4s ease-in-out;
  }
  
  .bottom-safe-area {
    height: 10px;
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(255,255,255,0);
  }
  
  .home-bar {
    height: 4px;
    background: #ffffff;
    border-radius: 5px;
    width: 110px;
    position: absolute;
    right: 0;
    left: 0;
    margin: auto auto;
    top: 0;
    bottom: 0;
  }
  
  .columns {
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  
  .left, .right {
    width: 200px;
  }
  
  .left img {
    width: 150px;
  }

  .left div {
    font-size: 15px;
    font-weight: 500;
  }
  
  .right img {
    width: 150px;
  }
  
  .right div {
    font-size: 15px;
    font-weight: 500;
  }
  
  @media (max-width: 768px) {
    .columns {
      flex-direction: column;
    }
    .left {
      margin: 40px;
    }
    .right {
      margin: 40px;
    }
  }
  