@import url('https://fonts.googleapis.com/css2?family=Patrick+Hand&display=swap');

.welcome-text-container {
	all: unset;
  grid-area: welcome;               /* Place in grid's "welcome" area */
  background-color: #e8fdd1;
  padding: 10px;
  font-family: 'Patrick Hand', cursive;
  font-size: 1.2rem;
  font-weight: 600;
  color: black;
  text-align: center;               /* Center text inside the box */
  align-self: center;              /* Vertically center in the grid cell */
  justify-self: start;
  

}
