@import url("https://fonts.googleapis.com/css2?family=Happy+Monkey&display=swap");

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

body {
  background-color: #585657;
  color: #7d66d9;
  font-family: "Happy Monkey", system-ui;
}

.row {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  max-height: 100vh;
}

.hi-img {
  position: relative;
  width: 100%;
}

.hi-msg {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  font-size: 60px;
  text-align: center;
  z-index: 10;
}
