* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    width: 100vw;
}

div {
  display: flex;
  justify-content: center;
  flex-direction: column;  /* <--- I added this */
  align-items: center;   /* <--- Change here */
  height: 100%;
  width: 100%;

  font-family: 'Lato', sans-serif;
  font-size: 64px;
  color: whitesmoke;
  

}

