body {
		  font-family: 'Roboto', sans-serif;
			background: skyblue;
		 /* height:100%;*/
		  width:100%;
			/*display:block;*/
		  /*position:relative;*/
			
			
	      
	
	}
	  .submit_button {
		  border: 5px solid red; 
		  border: 5px solid red; 
		  border-radius: 10px;
		  background-color:red; 
		  padding: 10px;
		  color: white;
		  font-weight: bold;
		  font-size: 15px;
	  }

#messageArea {
    font-size: 20px;
    color: #333;
    font-weight: bold;
    margin-top: 20px;
	border: 5px solid #E50A40;
	border-radius: 10px;
	
	width: 80%;	
	
}

img {
    max-width: 170px; /* Slightly larger image */
    max-height: 170px; /* Slightly larger image */
    margin-bottom: 10px; /* Space between image and text */
}

@media (max-width: 768px) {
    
    img {
        max-width: 60px; /* Adjust image size for tablets */
        max-height: 60px; /* Adjust image size for tablets */
    }

    #messageArea {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    
    img {
        max-width: 160px; /* Adjust image size for mobile */
        max-height: 160px; /* Adjust image size for mobile */
    }

    #messageArea {
        font-size: 16px;
    }
}

/* Base */
.btn-floating:hover img {
  margin-bottom: -3px;
	  
}

.btn-floating {
    position: fixed;
    right: 15px;
    overflow: hidden;
    width: 35px;
    height: 35px;
    border-radius: 100px;
    border: 0;
    z-index: 9999;
    color: white;
    transition: .2s;
	
}

/* WhatsApp */
.btn-floating.whatsapp {
    background-color: green;
    bottom: 50px;
	padding-left: 14px;
	
}

.btn-floating.whatsapp:hover {
    background-color: red
}