/* Boutons */
a {
	color: #7C2AE8;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

::selection {
	background: rgba(179,92,255,.35);
	color: var(--text);
}

.sbtn, .contact-form .sbtn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 18px;
	border-radius: 999px;
	border: 1px solid rgba(179,92,255,.35);
	background: rgba(255,255,255,.35);
	color:var(--text);
	font-weight:600;
	cursor: pointer;
	text-decoration: none;
	transition: transform .08s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
	position: relative;
	overflow: hidden;
}

.sbtn:hover, .contact-form .sbtn:hover {
	background: var(--accent-color);
	border-color:rgba(179,92,255,.60);
	transform: translateY(-1px);
	box-shadow:0 0 18px rgba(179,92,255,.35),0 8px 28px rgba(0,0,0,.15);
}

.sbtn:active, .contact-form .sbtn:active {
	transform: translateY(0);
}