body {
  width: 100vw;
  height: 100vh;
  padding: 20px;
  margin: 0;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow-x: hidden;
}

.reconstruction-root {
  width: fit-content;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;

  .banner {
    margin-top: 50px;
  }
}

.reconstruction {
  width: fit-content;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
  margin-top: 140px;

  .bubble1 {
    background-color: white;
    padding: 6px;
    max-width: 165px;
    box-sizing: border-box;
    margin: 0;
    position: relative;
    flex-shrink: 0;
  }

  .bubble1::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -10px;
    clip-path: polygon(0 0, 0 100%, 100% 100%);
    background-color: white;
  }

  img {
    flex-shrink: 0;
    width: 35px;
    image-rendering: pixelated;
    margin-top: 30px;
    align-self: center;
  }

  .bubble2 {
    background-color: white;
    padding: 6px;
    max-width: 165px;
    box-sizing: border-box;
    margin: 0;
    margin-top: 30px;
    position: relative;
    flex-shrink: 0;
    align-self: flex-end;
  }

  .bubble2::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -10px;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    background-color: white;
  }
}
