body  {
  color: #3e4553;
  font-family: "Montserrat", "Helvetica", Aria regular, sans-serif;
	justify-content: center;
    display:flex;
    flex-direction: row;
	
	background: linear-gradient(90deg, #D5D5D5 21px, transparent 1%) center, linear-gradient(#D5D5D5 21px, transparent 1%) center, #A5A5A5;
    background-size: 22px 22px;
	margin: 0;
	padding:0 ;
}

select, button
{
	
    font-size: 1em;
  font-family: "Montserrat", "Helvetica", Aria regular, sans-serif;
	
}

select
{
	width: 320px;
    text-overflow: ellipsis;
}

.main
{
  max-width:990px;
  padding-left: 32px;
  padding-right: 32px;
  padding-bottom: 160px;
  background-color: white;
  
  border: 1px solid #CCC;
  
  margin-top: 48px;
}

.text-block
{
	background: #E5EDF5;
	padding: 12px;
    font-size: 1em;
    line-height: 24px;
	flex: 1;
}

.section
{
	justify-content: center;
    display:flex;
    flex-direction: row;
	border-bottom: 1px solid;
	border-image: linear-gradient(
		to right,
		blue 0%,
		blue 33%,
		white 33%,
		white 66%,
		red 66%,
		red 100%
	) 1;
}

.roles-section{
	display:flex;
	justify-content: space-between;
	flex-direction: row;
	flex-flow: row wrap;
}


.role{
	background: #E5EDF5;
	padding: 24px;
	display:flex;
	justify-content: flex-start;
	flex-direction: row;
	flex:1;
}

.role img
{
	border: 1px dashed #00009133;
}


.role div
{
	margin:8px;	
}

h1,h2,h3
{
	font-style: bold;
}

h2
{
	margin-top:48px;
}

.big-decision
{
	text-align:center;
}

.big-decision select
{
	font-size:1em;
}

button#validate
{
	width:100%;
	padding:15px;
  align-items: center;
  background-color: #000091;
  color: #f5f5fe;
  cursor: pointer;
  font-size:1.2em;
}

button#validate:hover
{
	background-color: rgb(18, 18, 255);
	text-decoration: underline;
}

.french-flag
{
	height:1px;
	width:100%;
	background: linear-gradient(
		to right,
		blue 0%,
		blue 33%,
		white 33%,
		white 66%,
		red 66%,
		red 100%
	);
	
	padding:0px;
	margin:0px;
	margin-top: 8px;
	margin-bottom: 8px;
}

div.footer {
  text-align: right;
  padding: 10px;
  width: auto;
  left: auto;
  position: fixed;
  font-size: 0.7em;
  margin: 10px;
  z-index: 1;
  bottom: 0;
  right:0;
  background:rgba(0,0,0,0.35);
  border-radius: 10px;
  color:white !important;
}

div.footer a{
	color:inherit !important;
}


@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Montserrat Medium'), local('Montserrat-Medium'), url('./static/montserrat.ttf');
}

@font-face {
  font-family: 'Montserrat';
  font-style: bold;
  font-weight: 500;
  font-display: swap;
  src: local('Montserrat Bold'), local('Montserrat-Bold'), url('./static/montserrat-bold.ttf');
}



@media (max-aspect-ratio: 16/10)  {
	.main{
		padding-left: 32px;
		padding-right: 32px;
	}
  .roles-section{
    flex-direction: column;
	flex-flow: column nowrap;
	font-size:1.5em;
  }
  
  select
  {
	  font-size:1.5em;
	  max-width: 100%;
	  width: 100%;
  overflow: hidden;
  white-space: pre;
  text-overflow: ellipsis;
  -webkit-appearance: none;
  }

	.big-decision select
	{
		font-size:1.5em;
	}
	

	button#validate
	{
		font-size: 2em;
	}
}