/* Installations Chic Inc 2025 - Luc Beliveau */
/* Cascading style sheet for general styling */
/* Body margin and padding and fade in*/
body {
	margin:0;
	padding:0;
	font-family:arial;
	animation: FadeInAnimation ease-out 2s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}
div {
	box-sizing:border-box;
}
@keyframes FadeInAnimation {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/* Fonts Library */
@font-face { font-family: Atziluth; src: url('fonts/AtziluthScript.ttf'); } /*License payed */
@font-face { font-family: Bebas; src: url('fonts/BEBAS.ttf'); }
@font-face { font-family: MilkyWeek; src: url('fonts/MilkyWeek.ttf'); }

/*Shared Footer Customization */
.footer {
	text-align:center;
	font-size:12px;
	color:black;
	padding:15px 0 15px 0;
	margin:0;
}
.footer p{
	padding:0;
	margin:0;
	color:lightgrey;
}

.PageFullWidth{
	width:100%;
	background-color:white;
	padding:0;
	margin:0;
	margin-top:clamp(45px, 8vw, 64px);
	overflow:hidden;
	transition:margin-top 1s;
}