html {
  height: 100%;
}

body {
  font-family: 'Kanit', sans-serif;
  -webkit-user-select: none;
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  user-select: none;
  margin: 0px;
  height: 100%;
  display: flex;
  align-items: center;
  align-content: space-around;
  animation: transitionIn 1s;
}

@keyframes transitionIn {
  from {
    opacity: 0;
    transform: rotateX(-10deg);
  }
  to {
    opacity: 1;
    transform: rotateX(0);
  }
}

.utdadmission {
  font-family: 'Kanit', sans-serif;
  width: 550px;
  height: 378px;
  margin: auto;
  padding: 20px;
  box-sizing: border-box;
}

.utdadmission .flipdown {
  margin: auto;
}

.utdadmission h1 {
  text-align: center;
  font-weight: 100;
  font-size: 3em;
  margin-top: 0;
  margin-bottom: 10px;
}

.utdadmission h2 {
  text-align: center;
  font-weight: 100;
  font-size: 2em;
  margin-top: 0;
  margin-bottom: 10px;
}

.utdadmission p {
  text-align: center;
  font-weight: 100;
  margin-top: 0;
  margin-bottom: 10px;
}

.information {
  text-align: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 25px;
}
