* {
  position: relative;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Kanit", sans-serif;
  color: white;
  overflow-x: hidden;
}

.hero {
  overflow: hidden;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: dodgerblue;
}

.rotator {
  opacity: 0;
  display: grid;
  /* border:1px solid red; */
}

.rotator > * {
  grid-area: 1 / 1;
}

.rotator h1 {
  text-align: center;
  font-size: 1.6em;
  line-height: 1em;
  /* border:1px solid white; */
}

h1,
h2 {
  margin: 0;
  padding: 0;
}
h1 {
  font-weight: 600;
}

h2 {
  font-weight: 400;
}

.moreContent {
  padding: 50px;
  color: black;
  background: white;
}
