:root {
  --white: white;
  --black: black;
}

.body {
  height: 100vh;
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  background-color: #2c3648;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
}

.text {
  color: #fff;
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
}
