/* Footer styling */
html, body {
overflow-x: hidden; /* Prevent horizontal overflow on the entire page */
margin: 0;
padding: 0;
width: 100%;
}
.copyright-footer {
position: relative;
bottom: 0;
width: 100%;
max-width: 100%; /* Prevents the footer from exceeding the viewport width */
background-color: black;
color: white;
text-align: center;
padding: 10px;
font-family: Calibri, sans-serif;
font-weight: bold;
font-size: 11px;
letter-spacing: 1px; /* Increased character spacing */
line-height: 1.5; /* Adjusted line height */
box-sizing: border-box; /* Ensures padding doesn't cause overflow */
}
/* Style for the icons */
.icon-love {
width: 13px; /* Larger size for love icon */
height: 13px;
display: inline-block;
margin: 0 2px;
vertical-align: middle;
}
.icon-leaf {
width: 15px; /* Smaller size for leaf icon */
height: 15px;
display: inline-block;
margin: 0 1px; /* Adjusted margin for leaf icon */
vertical-align: middle;
}
/* Style to remove underline from links in footer */
.copyright-footer a {
color: white; /* Match link color with text color */
text-decoration: none; /* Remove underline */
}