body {
  background: #f8f8f8;
  color: #ffffff;
  text-align: center;
  padding: 0;
  margin: 0;
  position: relative;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, #000000, #111111);
  min-height: 100vh;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/backimgv1.jpg);
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
}

@keyframes fadeIn {
  from {
    top: 20%;
    opacity: 0;
  }
  to {
    top: 100;
    opacity: 1;
  }
}
canvas#beerCanvas {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.7;
}

.wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  animation: fadeIn 1000ms ease;
  -webkit-animation: fadeIn 1000ms ease;
  width: 95%;
}

.logo {
  margin-bottom: 30px;
  width: 100%;
  max-width: 180px;
  margin-top: -30px;
}

h1 {
  font-size: 130px;
  font-family: "Poppins", sans-serif;
  line-height: 1;
  font-weight: 700;
  margin: 10px 0px 20px;
  left: -10;
  position: relative;
}

h2 {
  font-size: 100px;
  font-family: "Poppins", sans-serif;
  line-height: 1.2;
  font-weight: 500;
  margin: 0px;
  opacity: 0.3;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(to right, #FDFBFB, #EBEDEE 70%);
  background: -webkit-linear-gradient(left, #178fdf, #23a8dc);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.blink1 {
  animation: 1s ease-in-out 0.1s infinite fadeIn;
}

@keyframes fadeIn {
  0% {
    opacity: 0.1;
  }
  100% {
    opacity: 1;
  }
}
.dot {
  color: #57a0ff;
}

p {
  text-align: center;
  margin: 18px;
  font-family: "Muli", sans-serif;
  font-weight: normal;
}

@media only screen and (max-width: 992px) {
  h2 {
    font-size: 70px;
  }
  h1 {
    font-size: 92px;
  }
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 52px;
  }
  h1 {
    font-size: 72px;
  }
}
@media only screen and (max-width: 575px) {
  h2 {
    font-size: 32px;
  }
  h1 {
    font-size: 42px;
  }
  .logo {
    max-width: 140px;
  }
}/*# sourceMappingURL=style.css.map */