.container {
  width: 100%;
  height: 100vh;
  max-height: 100%;
  background-color: #212121;
  overflow: hidden;
  position: relative;
}

.container__status {
  position: absolute;
  bottom: 40px;
  width: 400px;
  font-family: monospace;
  font-size: 18px;
  text-align: center;
  color: #FCFCFC;
  margin: 0 auto;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  mix-blend-mode: difference;
}

.content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content__svg-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  width: calc(2244px * 0.8);
  height: calc(2244 * 0.8);
  max-width: 50%;
  max-height: 50%;
}

svg {
  width: 100%;
  height: auto;
  border: 1px solid #FCFCFC;
}

@media screen and (max-width: 1200px) {
  .content__svg-wrapper {
    max-width: 100%;
    max-height: 100%;
  }
  
  svg {
    width: 2244px;
    height: auto;
  }
}

