@import url('https://fonts.googleapis.com/css2?family=Kanit&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Handjet&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    
    background-image: url(../img/soon-bg.jpeg);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    flex-direction: column;
    color: white;
}

#form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap:10px;
    background-color: transparent;
    padding: 10px;    
    border: 1px solid white;
    border-radius: 6px;
}

h1 {
    /*font-family: 'Kanit', sans-serif;*/
    font-family: 'Handjet', cursive;
    text-transform: uppercase;
    font-size:9rem;
    margin-bottom: 5px;
}

#inputEmail {
    height: 25px;
    width: 250px;
    background: none;
    padding-left: 5px;
    border: none;
    color: white;    
}

#inputEmail:focus-visible {
    border: none;
}

#inputEmail::placeholder {
    color: white;
    border: none;
}

button {
    text-align: center;
    border-radius: 8px;
    padding: 5px 20px;
    cursor: pointer;
    color: white;
    background-color: rgb(37, 36, 36);
}

@media screen and (max-width:600px) {

    
#form {  
    gap:7px;
}

#inputEmail {
    width: 200px;
}

button {
    font-size: 10px;
    text-align: center;
    border-radius: 8px;
    padding: 5px 10px;
    cursor: pointer;
    color: white;
    background-color: rgb(37, 36, 36);
}

 }

.js .fadeInDown {
    transform: translate3d(0, -20px, 0);
  }
.js .fadeInUp {
    transform: translate3d(0, 20px, 0);
  }
.js .fadeInRight {
    transform: translate3d(20px, 0, 0);
  }
.js .fadeInLeft {
    transform: translate3d(-20px, 0, 0);
  }

  [data-anime="left"] {
    transform: translate3d(-50px, 0, 0);
  }

  [data-anime="right"] {
    transform: translate3d(50px, 0, 0);
  }

  [data-anime="top"] {
    transform: translate3d(0,-50px, 0);
  }

  [data-anime="bottom"] {
    transform: translate3d(0,50px, 0);
  }

.js [data-anime] {
    opacity: 0;
  }
  
.js .anime {
    opacity: 1;
    transform: none;
    transition: transform 0.8s, opacity 0.8s;
  }