@font-face {
	font-family: 'MontserratAlternates-Thin';
	src: url(CSS/MontserratAlternates-Thin.otf);
}

:root {
    --col1: #84172F; /* bordeau */
    --col2: #242F4D; /* bleu */
		--col3: #d9d9d9; /* gris*/
    --font1: 'MontserratAlternates-Thin';
}

.bord {
	border:1px solid purple;
}

.colflex {
  display: flex;
  flex-direction: column;
}

.rowflex {
  display: flex;
  flex-direction: row;
}

.aic {
	align-items: center;
}

.jsca {
	justify-content: space-around;
}

.jscb {
	justify-content: space-between;
}

body {
	margin: 0;
	width: 100vw;
	font-family: var(--font1);
	background-color: white;
	justify-content: space-between;
}

footer {
	width: 100vw;
  height: 20vw;
	display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: var(--col2);
  font-family: var(--font1);
  font-size: 3vw;
	font-weight: bold;
	position: relative;
	/* margin: auto; */
}

.footext {
	width: 70vw;
	position: absolute;
	text-align: center;
	left: 26vw;
	top: 10vw;
}

#carotline-footer {
  width: 100vw;
  transform: rotate3d(0, 1, 0, 180deg);
}

input[type="text"], input[type="password"], input[type="email"], input[type="tel"], select {
	margin-bottom: 1vh;
	outline: none;
	border: 1px solid var(--col1);
	border-radius: 5px;
	text-align: center;
	font-weight: bold;
	font-family: var(--font1);
	color: var(--col2);
	font-size: 4vw;
	padding: 2vw;
	width: 80vw;
}

button {
	border-radius: 20vw;
	padding: 2vw 5vw 2vw 5vw;
	background-color: white;
	font-family: var(--font1);
	color: var(--col2);
	font-weight: bold;
	font-size: 5vw;
}
