/* Fonts */
@font-face {
  font-family: Fira Mono;
  src: url("../fonts/FiraMono-Bold.ttf");
}
/* Fonts End */
body {
  margin: 0;
  padding: 0;
  background-color: #fff;
  transition: 0.3s all;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow: hidden;
  overflow-y: hidden;
  overflow-x: hidden;
}
body::-webkit-scrollbar{
  display: none;
}
/* Emoji Text */
h1 {
  text-align: center;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: all 0.3s;
  font-size: 40px;
}
/* Emoji Text Eand */
p {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: center;
  color: #111;
  font-family: "Fira Mono", monospace;
  cursor: pointer;
  transition: all 0.3s;
}
/* Centering */
.center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  position: absolute;
  bottom: 30px;
}
/* Buttons */
button {
  background-color: transparent;
  border-color: transparent;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  position: relative;
  padding: 10px;
  transition: all 0.5s;
}