* {
    margin: 0px;
    padding: 0px
}
html {
    height: 100%;
}
body {
  font-family: 'Bai Jamjuree', sans-serif;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100%;
  background: url("bg.png"), black;
  background-size: cover;
  
  color: white;
  text-align: center;


  > * {
    mix-blend-mode: lighten;
    background: linear-gradient(to bottom, #fffd, #fff 40%, #fffa 60%, #fffc);
    background-clip: text;
    color: #fff0;
    text-shadow: 0px 10px 90px #fff;
  }
  h1 {
        background: linear-gradient(to bottom, #28C3FFdd, #28C3FF 40%, rgba(59, 242, 255, 1) 60%, rgba(59, 242, 255, 0.8));
    background-clip: text;
    font-size: 60px;
    font-weight: 300;
    letter-spacing: 20px;
    text-shadow: 0px 10px 90px #28C3FFdd;
    font-style: italic;
    margin-right: -20px;
    display: flex;
    align-items: center;
    span {
      transform: translateY(-6px);
    }
  }

  p {
    font-size: 20px;
    letter-spacing: 10px;
    margin-right: -10px;
  }

  small {
    margin-top: 30px;
    a {

      margin: 5px 0px;
      color: cyan;
      text-decoration: none;
      font-size: 20px;

    }
  }

  .footer {
    position: fixed;
    bottom: 40px;
    opacity: 0.8;
  }

}


