
body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #000000;
}
.container {
    align-items: center;
    background-color: #ffffff;
    width: 100%;
    max-width:600px;
    min-height: 100vh;
    background-image: url(images/12.jpg);
    background-size: cover; /* Ensures the image covers the container */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents image from repeating */
}
.content{
    display: grid;
    grid-template-columns:1fr 1fr 8fr 1fr 1fr;
    grid-template-rows: auto; 
}
.promotion {
    grid-column: 2/5;
    grid-row: 1;
    width: 100%;
    height: auto;
    padding-bottom: 10px;
}
.text{
  color: white;
}

.container .button1 {
    grid-column: 3/4;
    grid-row: 2;
    padding: 10px 20px;
    background-color: #e9d454;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 2.5em;
    font-family: 'Bebas Neue', sans-serif; /* Set the font family */
    animation-name: shrink;
    animation-duration: .5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    text-align: center;
    text-decoration: none;
}
@keyframes shrink {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

  
.btn-whatsapp-pulse {
	background: #25d366;
	color: white;
	position: fixed;
	bottom: 20px;
	right: 20px;
	font-size: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 0;
	height: 0;
	padding: 35px;
	text-decoration: none;
	border-radius: 50%;
	animation-name: pulse;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
	}
	80% {
		box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
	}
}

