@charset "UTF-8";

.bg {
  background-color: black;
}

/* Conteneur flexible (flexbox) */
.ctn-fl {
  display: flex;
  flex-flow: row;
  box-sizing: border-box;
  justify-content: space-evenly;
  font-family: Verdana, Tahoma, sans-serif;
  height: 200px;
  margin-top: 10rem;
  width: 100%;
}

/* Élément flexible */
.el-fl {
  flex-basis: 5%;
  flex-grow: 1;
  box-sizing: border-box;
  margin: 10px;
  text-align: center;
}

/* Élément flexible gauche et droit */
.el-fl-gd {
  flex-grow: 1;
  flex-shrink: 1;
}

/* Élément flexible du centre */
.el-fl-ct {
  flex-basis: 250px;
  flex-grow: 0;
  flex-shrink: 0;
  background-color: rgb(133, 200, 139);
  border: 2px solid greenyellow;
  font-size: 16px;
  line-height: 1.2;
}

input[type="submit"] {
  background-color: rgb(105, 147, 197);
  border-radius:0.2784em;
  box-shadow:0.1392em 0.1392em 0em black;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 4;
  margin-top: 30px;
  height: 35px;
  width: 100px;
}

form {
  flex-direction: column;
  border-color: greenyellow;
}

input[type="text"] {
  border-color: greenyellow;
  font-size: 14px;
  height: 25px;
  max-width: 200px;
}
