html {
  box-sizing: border-box;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}

html,
body {
  height: 100%;
  margin: 0;
  color: #3d4b60;
  font-family: "Open Sans", Arial, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* permet au body d'occuper au minimum toute la hauteur de l'écran */
}

header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 40px;
  background: #DE071A;
}

footer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  background: #DE071A;
}

main {
	flex: 1; /* permet de prendre la place restante dans le container */
  display: block;
  align-items: center;
  text-align: justify;
  justify-content: left;
  margin: 1% 15% 50px 15%;
  max-width: 1000px;
  font-size: 9;
}

.BlockLienEntreprise {
  display: block;
  color: black;
  border: solid 1px;
  border-color: white;
  background-color: white;
  padding: 20px;
  margin: 10px;
  border-radius: 10px;
  font-size: 14px;
  width: 260px;
  min-width: 260px;
  height: 250px;
}

h1 {
  font-size: 16;
  color: red;
  margin-top: 0px;
  text-align: left;
}

h2 {
  font-size: 12;
  margin-top: 50px;
  margin-bottom: 0px;
  text-align: left;
}

.ParagrapheNiv1 {
  font-size: 10;
  margin-top: 0;
  margin-left: 10%;
}

.ParagrapheNiv2 {
  font-size: 10;
  margin-top: 0;
  margin-left: 10%;
}



/*iframe pour integration Microsoft Form */
.form-container {
  position: relative;
  width: 750px;
}

.form-container iframe {
  padding: 0px 2px;
  width: 750px;
  height: 860px;
  border: none;
  margin-top: 0px;
  border-bottom: 1px solid #e0e0e0;
  border-top: 1px solid #e0e0e0;
}