body {
  background-color: black;
  display: flex;
  flex-direction: column; /* stack h1 & h2 */
  justify-content: center; /* vertical center */
  align-items: center;     /* horizontal center */
  height: 100vh;           /* full screen height */
  margin: 0;               /* remove default margins */
}



h1{
    font-family: "minion-pro", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 6rem;   /* way bigger than default h1 */
    color: whitesmoke;
    margin: 0.5rem 0;
}

h2{
        /* if the name is two or more words, just put in "" */
    font-family: "minion-pro", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2rem;   /* way bigger than default h1 */
    color: white;
    margin: 0.5rem 0;
}

@media (max-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  h2{
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  h2{
    font-size: 1rem;
  }
}