.content-holder {
  overflow-x: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  min-height: 400px;
}

.content-holder-inner {
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 25px;
  max-width: 750px;
}

.logo {
  width: 300px;
}

@media only screen and (max-width: 800px) {
  .content-holder-inner {
    flex-direction: column;
  }

  .text-holder {
    max-width: 300px;
  }
}
