html {
  font-size: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

body,
html {
  width: 100%;
  position: relative;
}

body {
  margin: 0;
  padding: 0;
  background-color: #B04A58;
  overflow-x: hidden;
}

h1,
p {
  color: #FFC7C7;
}

.flex {
  display: flex;
}
.flex-jc-sb {
  justify-content: space-between;
}
.flex-jc-sa {
  justify-content: space-around;
}
.flex-jc-se {
  justify-content: space-evenly;
}
.flex-jc-c {
  justify-content: center;
}
.flex-ai-c {
  align-items: center;
}
.flex-ai-sb {
  align-items: space-between;
}
.flex-ai-sa {
  align-items: space-around;
}
.flex-ai-b {
  align-items: baseline;
}

.hide {
  display: none;
}/*# sourceMappingURL=style.css.map */