/*UES*/

@import url('https://fonts.googleapis.com/css2?family=Kanit&family=Roboto&display=swap');

/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  background:#333; color:#eee;
  font-size: 1.5em; /* currently ems cause chrome bug misinterpreting rems on body element */
  line-height: 1.6;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin:0;
  padding:0;
}
.center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  min-height:100vh;
}
.logo{
  width:300px;
}
.banner{
  width:100%;
  margin:0 auto;
  max-width:2400px;
  border-top:1px solid #dfc29f;
  border-bottom:1px solid #dfc29f;
}
.container{
  margin:2em auto;
  width:80%;
  max-width:1200px;
}


/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: "Kanit", sans-serif;
  font-weight: 400;
  font-style: normal; }
h1 { font-size: 4.0rem; line-height: 1.2;  letter-spacing: -.1rem;}
h2 { font-size: 3.6rem; line-height: 1.25; letter-spacing: -.1rem; }
h3 { font-size: 3.0rem; line-height: 1.3;  letter-spacing: -.1rem; }
h4 { font-size: 2.4rem; line-height: 1.35; letter-spacing: -.08rem; color:#dfc29f; }
h5 { font-size: 1.8rem; line-height: 1.5;  letter-spacing: -.05rem; }
h6 { font-size: 1.5rem; line-height: 1.6;  letter-spacing: 0; }

/* Larger than phablet */
@media (min-width: 550px) {
  h1 { font-size: 5.0rem; }
  h2 { font-size: 4.2rem; }
  h3 { font-size: 3.6rem; }
  h4 { font-size: 3.0rem; }
  h5 { font-size: 2.4rem; }
  h6 { font-size: 1.5rem; }
}

p {
  margin-top: 0; }


/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  color: #eee; }
a:hover {
  color: #eee; }
.c{clear:both;}
