@charset "UTF-8";
/* CSS Document */

body {
	background-color: black
}

.container {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;    /* Centers vertically */
  height: 90vh;          /* Example: makes container fill viewport height */
}

.text_white{
	color: white;
}