.center {
  text-align: center;
}

.wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  margin: 1rem;
  height: 100vh;
}

#email-text {
  border-radius: 15px;
  height: 50%;
}

.vertical-align-container {
  display: flex;
  align-items: center;
  height: 100%;
}

.position-relative {
  position: relative;
}

.left-grid {
  grid-column: 1;
  background-color: white;
}

.right-grid {
  grid-column: 2;
}

.block-display {
  display: block;
}

.title {
  font-weight: 800;
  font-size: 400%;
  color: white;
}

.subheader {
  font-weight: 700;
  font-size: 250%;
  color: white;
}

.line-break {
  flex-basis: 100%; 
  height: 0;
}

.page {
  background-color: rgba(36, 36, 36, 0.968);
  font-family: "JetBrains Mono", monospace;
  color: rgba(238, 238, 238, 0.8);
}

.info-wrapper {
  background-color: rgba(53, 53, 53, 0.968);
  font-family: inherit;
  width: 100%;
  padding: 5%;
  border-radius: 10px;
  text-align: left;
  box-sizing: border-box
}

.spaced {
  padding: 5%;
}

.checkbutton {
  margin: 0.5rem;
  background-color: lightgreen;
  border: black 2px solid;
  border-radius: 10px;
}

.rightborder {
  border-right: 1px solid gray;
}