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

html,
body {
  height: 100%;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(/Images/bg-image.jpeg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.child {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}

h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 900;
  text-transform: capitalize;
  color: black;
}
