:root {
	--primary-color: rgb(33, 47, 66);
	--secondary-color: rgb(232, 215, 196);
}
html, body {
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	background: rgba(0, 0, 0, 1);
	color: var(--secondary-color);
	text-align: center;
}

p {
	margin: 1em 0;
	font-size: 2em;
	background: var(--primary-color);
	padding: 10px;
}
/* #content-wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
} */

#content-wrap {
	height: 100%;
	width: 100%;
}

#content {
	background: url("../img/bg.png") no-repeat center center fixed;
	background-size: cover;
	clip-path: circle(50px at 50px 50px);
	transition: clip-path .1s ease-in-out;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.links {
	display: flex;
	text-decoration: none;
	list-style: none;
	justify-content: center;
	padding: 0;
	margin: 0;
	background: var(--primary-color);
}
.links li{
	margin: 10px;
}

.links li:hover img{
	transform: scale(1.1);
}

.links img {
	transition: transform 0.2s ease-in;
	max-width: 100px;
	max-height: 60px;
}

.btn-light {
	background: var(--primary-color);
	color: var(--secondary-color);
	/* position: fixed;
	bottom: 10px;
	right: 10px; */
	width: 70px;
	height: 70px;
	border: none;
	padding: 10px;
	margin: 10px;
	border-radius: 50%;
	cursor: pointer;
	transition: box-shadow 0.2s ease-out;
}
.btn-light svg {
	width: 70%;
}

#on {
	opacity: 0;
	transform: scale(0);
	transform-origin: center;
	transition: all 0.2s ease-out;
}
.btn-light:hover {
	box-shadow: 0px 0px 5px rgb(192, 223, 244);
}
.btn-light:hover #on {
	opacity: 1;
	transform: scale(1);
}

/* If you want to add a message who where alwayse visible*/
.baseMessage {
	position: absolute;
	left: 50%;
	top: 50%;
	translate: -50% -50%;
	opacity: 0;
	animation: baseMessageIntensity 5s ease-in-out reverse infinite;
}

@keyframes baseMessageIntensity {
	0% {
		opacity: 0;
	}
	90% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
