body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100vh; /* Viewport height */
}

main {
  min-height: 0;
  flex-grow: 1;
  overflow: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
}

footer {
  position: sticky;
  bottom: 0;
  z-index: 1;
}

.mainTextBlock {
  margin-top: 20rem;
  max-width: 50vw;
}

.connectDetails {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-around;
}
