:root{
	--colorSecondary: #CCFFCC;
	--colorPrincipal: #33CCCC;
	--colorAccentuate: #009999;
	--blueLogo: #067280;
}

@font-face {
	font-family: Sketchzone;
	src: url("../font/Sketchzone.otf");
}

.no-responsive{
	display: none;
	visibility: hidden;
}

.responsive{
	display: block;
	visibility: visible;
}

a{
	text-decoration: none;
	color: var(--colorAccentuate);
	font-weight: bold;
	transition: all .3s ease-in-out;
}

a:hover{
	color: black;
}

button{
	border-radius: 10px;
	background-color: var(--colorPrincipal);
	transition: all .2s linear;
	box-shadow: 0px 4px 0 0 var(--colorAccentuate);
	font-weight: bold;
}

button:hover{
	cursor: pointer;
	background-color: var(--colorAccentuate);
	box-shadow: 0px 4px 0 0 var(--colorPrincipal);
	color: white;
}

button img{
	transition: all .3s ease-in-out;
}

button:hover img{
	transform: scale(1.2, 1.2);
}

.msg-error{
	color: red;
	font-weight: 600;
	margin-bottom: 20px;
}

.bandeau-error{
	width: 100%;
	height: max-content;
	padding: 20px;
	background-color: rgba(255, 0, 0, 0.5);
	color: white;
	border-radius: 10px;
	font-size: 1.2em;
	font-weight: 600;
}

.bandeau-success{
	width: 100%;
	height: max-content;
	padding: 20px;
	background-color: var(--colorAccentuate);
	color: white;
	border-radius: 10px;
	font-size: 1.2em;
	font-weight: 600;
}

@media (min-width: 1024px) {
	.no-responsive{
		display: block;
		visibility: visible;
	}

	.responsive{
		display: none;
		visibility: hidden;
	}
}