* {
	margin: 0;
	padding: 0;
	font-family: 'Fira Code', monospace;
	box-sizing: border-box;
}
html, 
body {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
a,
a:visited {
	text-decoration: none;
	color: inherit;
}
/*-- book now button on the bottom of the screen ---*/
.sticky-button {
    position: fixed;
    bottom: 0;
	right: 0;
    background-color: rgba(128, 159, 255, 1);
    color: #fff !important;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none !important;
    padding: 10px 15px;
	border-top-left-radius: 20px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease-in-out;
    z-index: 1000; 
}

.sticky-button:hover {
    background-color: rgba(128, 159, 255, 0.8);
	transform: translate(-5px, -2px) scale(1.1);
}
