body {
  position: relative;
  font-family: 'Microsoft JhengHei', serif;
}

@-webkit-keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

#rain {
  display: none;
}

#rain.start {
  display: inline-block;
  -webkit-animation: down .3s infinite linear;
          animation: down .3s infinite linear;
}

@-webkit-keyframes down {
  to {
    -webkit-transform: translate(-100px, 150px);
            transform: translate(-100px, 150px);
  }
}

@keyframes down {
  to {
    -webkit-transform: translate(-100px, 150px);
            transform: translate(-100px, 150px);
  }
}

#water {
  position: relative;
}

.wrap {
  position: relative;
}

.wrap svg {
  width: 80%;
  height: auto;
  margin: 0  10%;
}

@media screen and (max-width: 1199px) {
  .wrap svg {
    width: 100%;
    margin: 0 0;
  }
}

.btn {
  cursor: pointer;
  position: absolute;
  display: inline-block;
  font-size: 30px;
}

.btn text:hover {
  fill: red;
}

.btn2 {
  font-size: 30px;
  fill: #770fff;
}

.btn3 {
  font-size: 30px;
  font-weight: 700;
  fill: #770fff;
}

.title {
  position: absolute;
  left: 650px;
  top: 7%;
  color: #770fff;
}

@media screen and (max-width: 1199px) {
  .title {
    left: 50%;
  }
}

@media screen and (max-width: 767px) {
  .title {
    font-size: 16px;
    top: 5%;
  }
}

.logo {
  position: absolute;
  width: 500px;
  left: 200px;
  top: 5%;
}

@media screen and (max-width: 1199px) {
  .logo {
    width: 50%;
    left: 5%;
    top: 3%;
  }
}
/*# sourceMappingURL=svg.css.map */