 /* white bg w/ center content */
body {
  margin: 0;
  min-height: 100vh;
  background-image: url("milkycross.png");
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: serif;
}
 
/* outlined box */
 .outline-box {
  max-width: 700px;
  height: auto;
  border: 3px solid #ed78ae;
  background-color: white;
  color: #ed78ae;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  border-radius: 0px;
  padding: 20px;
  margin: 20px;
 }
 
  h1 {
  font-size: 35px;
  margin: 2px 0 2px 0;
  line-height: 1.1
}
h2 {
  font-size: 25px;
  margin: 2px 0 2px 0;
  line-height: 1.1
}
p {
  font-size: 15px;
  margin: 2px 0 2px 0;
  line-height: 1.1
}