* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-family: "BarlowCondensed-ExtraBold";
}

@font-face {
  font-family: "BarlowCondensed-ExtraBold";
  src: url("../fonts/BarlowCondensed-ExtraBold.ttf");
}

/* Home Start */
.home {
  padding: 20px 10px 90px;
  min-height: 100vh;
  background-image: url(../images/home-bg.webp);
  background-size: cover;
  width: 100%;
  max-width: 480px;
  margin: 0px auto;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.bonus img {
	width: 100%;
	max-width: 450px;
	height: auto;
}

.home h1 {
	font-size: 50px;
	text-transform: uppercase;
	color: #fff;
	transform: rotate(-3deg);
}

.boy img {
	width: 100%;
	height: auto;
	max-width: 350px;
}

.sign-btn {
  background-color: #EEAF00;
  padding: 5px 20px;
}

.sign-btn .btn {
  font-size: 40px;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  display: inline-block;
  padding: 6px 0;
}

.ludo img {
	width: 100%;
	height: auto;
	max-width: 280px;
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  right: 0;
  overflow: hidden;
  max-width: 480px;
}

.bonus img {
  max-width: 400px;
}
.home h1 {
  font-size: 40px;
}
.boy img {
  max-width: 90%;
}
.ludo img {
  max-width: 280px;
  margin-bottom: 20px;
}

.whatsapp-icon {
  position: absolute;
  right: 10px;
  bottom: 12%;
}
/* Home End */

@media(max-width:375px) {

  .sign-btn .btn {
    font-size: 24px; 
  }

  .whatsapp-icon img {
      width: 40px;
      height: 40px;
  }

  .ludo img {
    max-width: 200px;
  }

}

/* Responsive End */

.zoom {
  animation: zoom 1s linear alternate infinite;
}

@keyframes zoom {
  0% {
    transform: scale(.8);
  }

  100% {
    transform: scale(1);
  }
}