/*@import url('https://fonts.googleapis.com/css2?family=Orbit&display=swap');

body {
  background-color: aliceblue;
}*/

.grid-container {
  display: grid;
  place-content: center; /* Centers both horizontally and vertically */
  height: 100vh; /* Example: make container take full viewport height */
}

.centered-item {
  /* Styles for the item to be centered */
  font-family: sans-serif; 
  color: steelblue;
  text-align: center;
}
