:root {
  --accent-color: #ff6f77;
  /*     --secondary-color: #e4c1f9; */
  --back-color: #ffbbc1;
  /*     --shadow-color: #c0c5c1; */
  --text-color-dark: #1d1d1d;
  /*     --text-color-light: #f7f7f7; */
}

* {
  box-sizing: border-box;
  /* font-family: "Roboto", sans-serif; */
  margin: 0;
  padding: 0;

  -ms-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -o-text-size-adjust: none;
  -webkit-text-size-adjust: none;
}

body {
  background-color: var(--back-color);
  color: var(--text-color-dark);
  /* prevents margin collapsing */
  position: absolute;
  width: 100%;
}

h1 {
  background-color: var(--accent-color);
  border-radius: 30px;
  text-align: center;
  /* font-size: 8rem; */
  font-size: 6rem;
}

header > p{
  margin: 0rem 20rem;
  border: tomato;
}
