p {
	font-family: "Ubuntu Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  line-height: 0;
  color: rgba(255, 255, 255, 0.9);
}

.background {
	background-image: linear-gradient(45deg, #051937, #004d7a, #008793, #00bf72, #a8eb12);
	display: table;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}

.grid-wrapper {
  display: grid;
  grid-template-columns: 80% 20%;
  grid-auto-rows: 90% 10%;
  width: 100%;
  height: 100%;
}
.grid-one {
  grid-column: 1;
  grid-row: 1;
  border-style: solid;
  border-width: 0px 0px 1px 0px;
  border-color: rgba(255, 255, 255, 0.5);
}
.grid-two {
  grid-column: 2;
  grid-row: 1;
  border-style: solid;
  border-width: 0px 0px 1px 1px;
  border-color: rgba(255, 255, 255, 0.5);
}
.grid-three {
  grid-column: 1;
  grid-row: 2;
}
.grid-four {
  grid-column: 2;
  grid-row: 2;
  border-style: solid;
  border-width: 0px 0px 0px 1px;
  border-color: rgba(255, 255, 255, 0.5);
}

.vertical-container {
  position: relative;
  height: 100%;
}

.vertical-element {
  margin: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}





.outer {
	display: table;
	position: absolute;
	top: 0;
	left: 0;
	height: 90%;
	width: 100%;
}

.middle {
  display: table-cell;
  vertical-align: middle;
}

.inner {
  margin-left: auto;
  margin-right: auto;
  width: 500px;
}