.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-padding-before: 40px;
          padding-block-start: 40px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.container__text {
  -webkit-margin-after: 30px;
          margin-block-end: 30px;
}
.container__logo {
  height: 70px;
}
.container__disconnected {
  height: 250px;
  -webkit-margin-after: 40px;
          margin-block-end: 40px;
}
.container__button {
  padding: 10px 20px;
  background-color: #FFA400;
  border: none;
  border-radius: 5px;
  font-weight: 500;
  font-size: 16px;
}
.container__button:hover {
  background-color: rgb(0, 0, 0);
  color: white;
  cursor: pointer;
}