body {
    background-color: black;
    font-family: verdana;
    font-size: 80px;
    color: white;
}

.home_container {
  display: flex;
  justify-content: center;   /* horizontal centering */
  align-items: center;       /* vertical centering */
  
  height: 100vh;             /* full viewport height */
  text-align: center;        /* optional, centers inline text */
}