
.h-font {
    font-family: "Merienda", cursive;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}
/* General CSS */ 
* {
	margin: 0;
	font-family: 'Poppins', sans-serif;
	}
html {
	font: 12px/20px Arial, sans-serif;
	}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
} 
.custom-bg{
    background-color: var(--teal);
    border: 1px solid var(--teal);
}  
.custom-bg:hover{
    background-color: var(--teal_hover);
    border-color: var(--teal_hover);
}  
.h-line{
    width: 150px;
    margin: 0 auto;
    height: 1.7px;
}
.custom-alert{
    position: fixed;
    top: 80px;
    right: 25px;
}
/* Body */
html, body {
  height: 100%;
 
}

body {
	width: 100%;
	margin: 0;
	padding: 0;
	background-color: rgb(255, 221, 171);
	position: relative;
  display: flex;
  flex-direction: column;
}
/* CSS for the Footer */
.footer {
	width:100%;
	background: rgb(148, 80, 52);
	color: white ;
	padding: 40px 0;
  }
  
  .footer-container {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
  }
  
  .footer-section {
	flex: 1;
	padding: 20px;
	min-width: 250px;
  }
  
  .footer-section h2,
  .footer-section h3 {
	margin-bottom: 15px;
  }
  
  .footer-section p,
  .footer-section ul {
	font-size: 15px;
	line-height: 1.6;
  }
  
  .footer-section ul {
	list-style: none;
  }
  
  .footer-section ul li {
	margin-bottom: 10px;
  }
  
  .footer-section ul li a {
	text-decoration: none;
	color: white;
	transition: color 0.3s;
  }
  
  .footer-section ul li a:hover {
	color: #442db7;
  }
  
  .footer-section .contact p {
	display: flex;
	align-items: center;
  }
  
  .footer-section .contact i {
	margin-right: 10px;
  }
  
  .footer-bottom {
	text-align: center;
	padding: 20px 0;
	border-top: 1px solid #444;
	margin-top: 40px;
	font-size: 14px;
  }
