@import url(https://fonts.googleapis.com/css?family=Kanit:wght@300;400);

html,
body {
  box-sizing: border-box;
  font-size: 16px;
  height: 100%;
  background-color: #f5f5f5;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  display: flex;
  flex-direction: column;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-touch-callout: none;
  cursor: default;
  -o-user-select: none;
  -moz-user-select: none;
}

body,
h1 {
  font-family: "Kanit", sans-serif;
  font-weight: normal;
  margin: 0;
  padding: 0;
}

header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  height: 100%;
  width: 100%;
}

header h1 {
  position: relative;
  font-size: 3em;
  font-weight: bold;
  display: block;
  line-height: 100%;
  margin-bottom: 30px;
  text-align: center;
}

header h1 span:nth-of-type(1) {
  color: #b96d6d;
  font-size: 1.8em;
}

header h1 span:nth-of-type(2) {
  color: #b5b5b5;
  font-weight: 300;
}

@media (min-width: 40rem) {
  header h1 {
    font-size: 6em;
  }
}
