* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
    text-decoration: none;
}
body {
  font-family: 'Kanit', sans-serif;
  line-height: 1.6;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.logo {
  height: 45px;
}

nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
}

.btn-register {
  background-color: #ffc107;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 5px;
  color: #000;
  font-weight: bold;
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}
.main-banner{
	background: url("img/groundbg.svg"),url("img/starbg.svg");
	background-position: center ;
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-size: cover;	
}
.rocket{
	width: 100px;
	display:block;
	position:relative;
	margin: 0 auto;
}

.astronaut01{
	max-width: 140px;
	float: left;
	margin-left: 20%; 
	z-index: -2;
}
.astronaut02{
	max-width: 140px;
	float: right;
	margin-right: 20%; 
	z-index: -2;
}
#rocketshadow{
	display:block;
	position:relative;
	width:100px;
	margin: 0 auto;
}
@media (min-width: 480px) {
  .astronaut01{
    margin-left: 10%; 
  }
  .astronaut02{
    margin-right: 10%; 
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #f1f1f1;
    position: absolute;
    top: 70px;
    right: 10px;
    width: 200px;
    padding: 1rem;
    border-radius: 8px;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

.hero {
  padding: 2rem;
  text-align: center;
}

.main-banner {
  margin-bottom:20px;
}
.section {
      padding: 2rem 1rem;
	  background-color:#2c0091;
    }
.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.card {
  background: ;
  padding: 1rem;
  border-radius: 0.5rem;
  max-width: 215px;
  text-align: center;
  color:#fff;
}
.card img{
	width: 120px;	
}
.card h3{
	color: #FF955E;
}
.card a{
	color: #FFF;
}
.carousel {
  overflow: hidden;
  position: relative;
  margin: 2rem auto;
  width: 90%;
}

.carousel-track {
  display: flex;
  transition: transform 0.3s ease-in-out;
}

.carousel-item {
  min-width: 100%;
  box-sizing: border-box;
  padding: 0.5rem;
  text-align: center;
 
}
.carousel-item a{
	color:#464646;
}
.carousel-item img{
	border-radius: 10px;
}
.carousel-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none; 
}

.carousel-controls button {
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  pointer-events: auto; 
}

@media  (min-width: 600px) {
  .carousel-item {
    min-width: 50%;
  }
}
@media (min-width: 900px) {
  .carousel-item {
    min-width: 33.33%;
  }
}

.qa {
  padding: 2rem;
  background-color: #2c0091;
}
.qa h1{
  color: #fff;
  text-align: center;
  margin-bottom:20px;
}
details {
	max-width: 900px;
	margin: 10px auto;
	border: 1px solid #ccc;
	border-radius: 8px;
	padding: 10px;
	background-color: #f9f9f9;
}

summary {
  font-weight: bold;
  cursor: pointer;
}

summary::marker {
  color: #007BFF;
}
footer {
  text-align: center;
  padding: 1.5rem;
  background: #333;
  color: white;
}


/*register button*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:900');

#register{
  margin:0;
  padding:0;
  font-family: 'Montserrat', sans-serif;
}
#wrapper{
  box-sizing:border-box;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top: 50px;
  margin-bottom: 30px;
}
.my-super-cool-btn{
  position:relative;
  text-decoration:none;
  color:#254BB7;
  letter-spacing:1px;
  font-size:1.2rem;
  box-sizing:border-box;
}
.my-super-cool-btn span{
  position:relative;
  box-sizing:border-box;
  display:flex;
  align-items:center;
  justify-content:center;
  width:120px;
  height:120px;
}
.my-super-cool-btn span:before{
  content:'';
  width:100%;
  height:100%;
  display:block;
  position:absolute;
  border-radius:100%;
  border:5px solid #EDDF5D;
  box-sizing:border-box;
  transition: all .85s cubic-bezier(0.25, 1, 0.33, 1);
}
.my-super-cool-btn:hover span:before{
  transform:scale(0.8);
  box-shadow: 0 20px 55px rgba(56, 45, 117, 0.14), 0 15px 35px rgba(0,0,0,0.14);
}
.my-super-cool-btn .dots-container{
  opacity:0;
  animation: intro 1.6s;
  animation-fill-mode: forwards;
}
.my-super-cool-btn .dot{
  width:8px;
  height:8px;
  display:block;
  background-color:#EDDF5D;
  border-radius:100%;
  position:absolute;
  transition: all .85s cubic-bezier(0.25, 1, 0.33, 1);
}
.my-super-cool-btn .dot:nth-child(1){
  top:50px;
  left:50px;
  transform:rotate(-140deg);
  animation: swag1-out 0.3s;
  animation-fill-mode: forwards;
  opacity:0;
}
.my-super-cool-btn .dot:nth-child(2){
  top:50px;
  right:50px;
  transform:rotate(140deg);
  animation: swag2-out 0.3s;
  animation-fill-mode: forwards;
  opacity:0;
}
.my-super-cool-btn .dot:nth-child(3){
  bottom:50px;
  left:50px;
  transform:rotate(140deg);
  animation: swag3-out 0.3s;
  animation-fill-mode: forwards;
  opacity:0;
}
.my-super-cool-btn .dot:nth-child(4){
  bottom:50px;
  right:50px;
  transform:rotate(-140deg);
  animation: swag4-out 0.3s;
  animation-fill-mode: forwards;
  opacity:0;
}
.my-super-cool-btn:hover .dot:nth-child(1){
  animation: swag1 0.3s;
  animation-fill-mode: forwards;
}
.my-super-cool-btn:hover .dot:nth-child(2){
  animation: swag2 0.3s;
  animation-fill-mode: forwards;
}
.my-super-cool-btn:hover .dot:nth-child(3){
  animation: swag3 0.3s;
  animation-fill-mode: forwards;
}
.my-super-cool-btn:hover .dot:nth-child(4){
  animation: swag4 0.3s;
  animation-fill-mode: forwards;
}
@keyframes intro {
   0% {
     opacity:0;
  }
  100% {
     opacity:1;
  }
}
@keyframes swag1 {
   0% {
     top:50px;
     left:50px;
     width:8px;
  }
  50% {
    width:30px;
    opacity:1;
  }
  100% {
     top:20px;
     left:20px;
     width:8px;
     opacity:1;
  }
}
@keyframes swag1-out {
   0% {
     top:20px;
     left:20px;
     width:8px;
  }
  50% {
     width:30px;
    opacity:1;
  }
  100% {
     top:50px;
     left:50px;
     width:8px;
    opacity:0;
  }
}
@keyframes swag2 {
   0% {
     top:50px;
     right:50px;
     width:8px;
  }
  50% {
    width:30px;
    opacity:1;
  }
  100% {
     top:20px;
     right:20px;
     width:8px;
     opacity:1;
  }
}
@keyframes swag2-out {
   0% {
     top:20px;
     right:20px;
     width:8px;
  }
  50% {
     width:30px;
    opacity:1;
  }
  100% {
     top:50px;
     right:50px;
     width:8px;
    opacity:0;
  }
}
@keyframes swag3 {
   0% {
     bottom:50px;
     left:50px;
     width:8px;
  }
  50% {
    width:30px;
    opacity:1;
  }
  100% {
     bottom:20px;
     left:20px;
     width:8px;
     opacity:1;
  }
}
@keyframes swag3-out {
   0% {
     bottom:20px;
     left:20px;
     width:8px;
  }
  50% {
     width:30px;
    opacity:1;
  }
  100% {
     bottom:50px;
     left:50px;
     width:8px;
    opacity:0;
  }
}
@keyframes swag4 {
   0% {
     bottom:50px;
     right:50px;
     width:8px;
  }
  50% {
    width:30px;
    opacity:1;
  }
  100% {
     bottom:20px;
     right:20px;
     width:8px;
     opacity:1;
  }
}
@keyframes swag4-out {
   0% {
     bottom:20px;
     right:20px;
     width:8px;
  }
  50% {
     width:30px;
    opacity:1;
  }
  100% {
     bottom:50px;
     right:50px;
     width:8px;
    opacity:0;
  }
}
/* Smoke container */

#smoke {
	position: absolute;
	z-index: 1;
	width: 1px; 
	height: 125px;
	left: 50%; 
}

/* smoke balls */

#smoke span { 
  display: block;
	position: absolute;
	bottom: 110px; left: 50%; margin-left:-40px;
	height: 0px; width: 0px;
	border: 50px solid #f7f6d9;
	border-radius: 35px;
	left: -14px; opacity: 0;
	transform: scale(0.2);
}

/* Smoke animation */

@keyframes smokeL1 {
	0%   { transform: scale(0.2) translate(0, 0) }
	10%  { opacity: 1; transform: scale(0.2) translate(20px, 200px) }
	100% { opacity: 0; transform: scale(1) translate(0, 5px) }
}

@keyframes smokeR1 {
	0%   { transform: scale(0.2) translate(0, 0) }
	10%  { opacity: 1; transform: scale(0.2) translate(20px, 200px) }
	100% { opacity: 0; transform: scale(1) translate(0, 5px) }
}

@keyframes smokeL2 {
	0%   { transform: scale(0.2) translate(0, 0) }
	10%  { opacity: 1; transform: scale(0.2) translate(40px, 100px) }
	100% { opacity: 0; transform: scale(1) translate(0, 5px) }
}

@keyframes smokeR2 {
	0%   { transform: scale(0.2) translate(0, 0) }
	10%  { opacity: 1; transform: scale(0.2) translate(40px, 100px) }
	100% { opacity: 0; transform: scale(1) translate(0, 5px) }
}

#smoke .s0 { animation: smokeL1 10s 0s infinite }
#smoke .s1 { animation: smokeR1 10s 0.5s infinite }
#smoke .s2 { animation: smokeL2 10s 1s infinite }
#smoke .s3 { animation: smokeR2 10s 1.5s infinite }
#smoke .s4 { animation: smokeL1 10s 2s infinite }
#smoke .s5 { animation: smokeR1 10s 2.5s infinite }
#smoke .s6 { animation: smokeL2 10s 3s infinite }


/* ----------------------------------------------
 * Generated by Animista on 2019-8-7 10:9:12
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation shake-vertical
 * ----------------------------------------
 */
.shake-vertical {
	-webkit-animation: shake-vertical 3s cubic-bezier(0.455, 0.030, 0.515, 0.955) 0.5s infinite both;
	        animation: shake-vertical 4s cubic-bezier(0.455, 0.030, 0.515, 0.955) 0.5s infinite both;
}

.shake-vertical01 {
	-webkit-animation: shake-vertical 4s cubic-bezier(0.455, 0.030, 0.515, 0.955) 0.6s infinite both;
	        animation: shake-vertical 6s cubic-bezier(0.455, 0.030, 0.515, 0.955) 0.6s infinite both;
}

.shake-vertical02 {
	-webkit-animation: shake-vertical 3s cubic-bezier(0.455, 0.030, 0.515, 0.955) 0.7s infinite both;
	        animation: shake-vertical 5s cubic-bezier(0.455, 0.030, 0.515, 0.955) 0.7s infinite both;
}

 @-webkit-keyframes shake-vertical {
        0%,
        100% {
          -webkit-transform: translateY(0);
                  transform: translateY(0);
        }
        10%,
        30%,
        50%,
        70% {
          -webkit-transform: translateY(-1px);
                  transform: translateY(-2px);
        }
        20%,
        40%,
        60% {
          -webkit-transform: translateY(2px);
                  transform: translateY(2px);
        }
        80% {
          -webkit-transform: translateY(1.6px);
                  transform: translateY(1.6px);
        }
        90% {
          -webkit-transform: translateY(-0.6px);
                  transform: translateY(-0.6px);
        }
      }
      @keyframes shake-vertical {
        0%,
        100% {
          -webkit-transform: translateY(0);
                  transform: translateY(0);
        }
        10%,
        30%,
        50%,
        70% {
          -webkit-transform: translateY(-1px);
                  transform: translateY(-1px);
        }
        20%,
        40%,
        60% {
          -webkit-transform: translateY(1px);
                  transform: translateY(1px);
        }
        80% {
          -webkit-transform: translateY(0.6px);
                  transform: translateY(0.6px);
        }
        90% {
          -webkit-transform: translateY(-0.6px);
                  transform: translateY(-0.6px);
        }
      }
      