* {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}
html,
body {
  height: 100%;
  overscroll-behavior: contain;
}
body {
  background: rgba(0, 0, 0, 0.1);
  /* background: url('/img/field.jpg'); */
}

#container {
  width: 400px;
  height: 100%;
  position: absolute;
  margin: 0 auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(#f6f6f6, #fff);
  cursor: cell;
}

.loadingclass {
  height: 100%;
  width: 100%;
  background-image: url("./src/loading-min.jpg");
  background-color: #fff;
  background-size: contain;
  background-position: 50% 0%;
  background-repeat: no-repeat;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
}

.loadingclass img {
  position: absolute;
  bottom: 50px;
  left: 45%;
  width: 10%;
}

.unselectable {
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}

#record,
#score {
  position: absolute;
  left: 50%;
  display: block;
  transform: translate(-50%, 0);
  color: rgba(0, 0, 0, 0.5);
  text-align: center;
}

#record {
  top: 95px;
  font-size: 16px;
  font-weight: 400;
  opacity: 0;
  transition: 0.2s;
}

#score {
  top: 110px;
  font-size: 110px;
  font-weight: 300;
  z-index: -1;
}

#tweet {
  position: absolute;
  top: 300px;
  z-index: 10;
  text-align: center;
  transition: 0.3s;
}

#donation {
  z-index: 10;
  position: absolute;
  text-align: center;
  padding: 10px;
  opacity: 0;
  transition: 0.3s;
}

#emot {
  position: absolute;
  font-size: 0px;
  transform: translate(-50%, -50%);
  z-index: 10;
}

#tweet {
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 1.2rem;
  font-weight: 300;
  z-index: 10;
  position: absolute;
}

@media screen and (max-width: 500px) {
  #container {
    width: 100vw;
    height: 100%;
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border: none;
  }

  #container:after {
    display: none;
  }
}
