::-moz-selection {
    background-color: transparent;
    color: #000;
}

::selection {
    background-color: transparent;
    color: #000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "THSarabunNew", sans-serif;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* border: 1px solid red; */
  width: 100vw;
  height: 100vh;
  padding: 30px auto 30px auto;
}

.title {
  display: flex;
  white-space: wrap;
  font-size: 2rem;
  font-weight: 700;
  margin: 1rem 0;
  padding: 0 3rem;
}

.title a {
  font-size: 10px;
}

@media screen and (min-width: 720px) {
  .description {
    display: flex;
    white-space: wrap;
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0;
    padding: 0 5rem;
  }
  .content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    /* border: 1px solid blue; */
    width: 100%;
    height: 82vh;
    margin: 30px auto 30px auto;
  }
  .wide-screen-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin: 0 1rem 0 1rem;
    /* border: 1px solid yellowgreen; */
  }
  .small-screen-icon {
    display: none;
  }
}

@media screen and (max-width: 721px) {
  .description {
    display: flex;
    white-space: wrap;
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    padding: 0 2rem;
  }
  .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    margin: 30px auto 50px auto;
    /* border: 1px solid blue; */
  }
  .wide-screen-icon {
    display: none;
  }
  .small-screen-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin: 1rem 0 1rem 0;
    /* border: 1px solid yellowgreen; */
  }
}

.qr-code {
  width: 15rem;
  height: 15rem;
  border-radius: 10px;
  box-shadow: 2px 2px 15px 7px rgba(0, 0, 0, 0.12),
    -2px -2px 15px 7px rgba(0, 0, 0, 0.11);
  cursor: pointer;
  transition: 0.4s;
}

.qr-code img {
  width: inherit;
  height: inherit;
  border-radius: 10px;
  object-fit: cover;
}

.qr-code:hover {
  transform: scale(0.99, 0.99);
  box-shadow: 1px 1px 10px 3px rgba(27, 27, 27, 0.6),
    -1px -1px 10px 3px rgba(32, 32, 32, 0.5);
}

.or {
  display: flex;
  justify-content: center;
  font-size: 1.5rem;
  /* border: 1px solid pink; */
}

.link {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  /* border: 1px solid pink; */
}

.btn {
  align-items: center;
  appearance: none;
  background-color: #fff;
  border-radius: 24px;
  border-style: none;
  box-shadow: rgba(0, 0, 0, 0.2) 0 3px 5px -1px,
    rgba(0, 0, 0, 0.14) 0 6px 10px 0, rgba(0, 0, 0, 0.12) 0 1px 18px 0;
  box-sizing: border-box;
  color: #3c4043;
  cursor: pointer;
  display: inline-flex;
  fill: currentcolor;
  font-family: "Google Sans", Roboto, Arial, sans-serif;
  font-size: 24px;
  font-weight: 500;
  height: 48px;
  justify-content: center;
  letter-spacing: 0.25px;
  line-height: normal;
  max-width: 100%;
  overflow: visible;
  padding: 2px 24px;
  position: relative;
  text-align: center;
  text-transform: none;
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1),
    opacity 15ms linear 30ms, transform 270ms cubic-bezier(0, 0, 0.2, 1) 0ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: auto;
  will-change: transform, opacity;
  z-index: 0;
}

.btn:hover {
  background: #f6f9fe;
  color: #174ea6;
}

.btn:active {
  box-shadow: 0 4px 4px 0 rgba(26, 151, 247, 0.3),
    0 8px 12px 6px rgb(60 64 67 / 15%);
  outline: none;
}

.btn:focus {
  outline: none;
  border: 2px solid #4285f4;
}

.btn:not(:disabled) {
  box-shadow: rgba(60, 64, 67, 0.3) 0 1px 3px 0,
    rgba(60, 64, 67, 0.15) 0 4px 8px 3px;
}

.btn:not(:disabled):hover {
  box-shadow: rgba(60, 64, 67, 0.3) 0 2px 3px 0,
    rgba(60, 64, 67, 0.15) 0 6px 10px 4px;
}

.btn:not(:disabled):focus {
  box-shadow: rgba(60, 64, 67, 0.3) 0 1px 3px 0,
    rgba(60, 64, 67, 0.15) 0 4px 8px 3px;
}

.btn:not(:disabled):active {
  box-shadow: rgba(60, 64, 67, 0.3) 0 4px 4px 0,
    rgba(60, 64, 67, 0.15) 0 8px 12px 6px;
}

.btn:disabled {
  box-shadow: rgba(60, 64, 67, 0.3) 0 1px 3px 0,
    rgba(60, 64, 67, 0.15) 0 4px 8px 3px;
}

a {
  text-decoration: none;
  cursor: pointer;
}

@import url("https://fonts.googleapis.com/css?family=Lato:400,400i,700");
footer {
  width:100vw;
  position:fixed;
  bottom:0px;
  z-index: -100;
}
footer div {
  background-color:#6393f1;
  margin: -5px 0px 0px 0px;
  padding:0px;
  color: #fff;
  text-align:center;
}
svg {
  width:100%;
}
.arrow {
  stroke-width: .3px;
  stroke:rgb(255, 255, 255);
}
.topball {
  animation: ball 1.5s ease-in-out;
  animation-iteration-count:infinite;
  animation-direction: alternate;
  animation-delay: 0.3s;
  cursor:pointer;
}

.wave {
  animation: wave 3s linear;
  animation-iteration-count:infinite;
  fill: #6393f1;
}
.drop {
  fill: transparent;
  animation: drop 5s ease infinite normal;
  stroke: #4478e3;
  stroke-width:0.5;
  opacity:.6; 
  transform: translateY(80%);
}
.drop1 {
  transform-origin: 20px 3px;
}
.drop2 {
  animation-delay: 3s;
  animation-duration:3s;
  transform-origin: 25px 3px;
}
.drop3 {
  animation-delay: -2s;
  animation-duration:3.4s;
  transform-origin: 16px 3px;
}
.gooeff {
  	filter: url(#goo);
}
#wave2 {
  animation-duration:5s;
  animation-direction: reverse;
  opacity: .6
}
#wave3 {
  animation-duration: 7s;
  opacity:.3;
}
@keyframes drop {
  0% {
    transform: translateY(80%); 
    opacity:.6; 
  }
  80% {
    transform: translateY(80%); 
    opacity:.6; 
  }
  90% { 
    transform: translateY(10%) ; 
    opacity:.6; 
  }
  100% { 
    transform: translateY(0%) scale(1.5);  
    stroke-width:0.2;
    opacity:0; 
  }
}
@keyframes wave {
  to {transform: translateX(-100%);}
}
@keyframes ball {
  to {transform: translateY(20%);}
}
