/* RESET RESET RESET RESET RESET RESET RESET */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 14px;
	font: inherit;
	vertical-align: baseline;
	box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a, a:hover, a:active, a:visited {
	color: inherit;
	text-decoration: none;
}

input, select
{
	font: inherit;
}

[role="button"],
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
    -webkit-box-sizing: content-box;
       -moz-box-sizing: content-box;
            box-sizing: content-box;
            margin: 0;
}

/* Reset `button` and button-style `input` default styles */
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
    background: none;
    border: 0;
    color: inherit;
    /* cursor: default; */
    font: inherit;
    line-height: normal;
    overflow: visible;
    padding: 0;
    -webkit-appearance: none; /* for input */
    -webkit-user-select: none; /* for button */
       -moz-user-select: none;
		-ms-user-select: none;
	border-radius: 0;
}
input::-moz-focus-inner,
button::-moz-focus-inner {
    border: 0;
    padding: 0;
}
button {
	outline: 0px solid white;
	cursor: pointer;
	box-sizing: border-box;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select::-ms-expand {
    display: none;
}

/* General ---------------------- */

html, body {
    height: 100%;
}

body {
    font-family: 'Montserrat', 'sans-serif';
}

a:hover {
  color: rgb(220, 220, 220);
}
/* Specific ----------------------------------------------------------------------------------------*/
.wrap-container {
  display: flex;
  justify-content: center;
}

.wrap {
  flex: 0 1 1200px;
  padding: 0 40px;
}

#topBar {
  padding: 10px 0;

}

#topBar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}

.red-bg { background-color: #ff0000; 
}

#myNameBox a {
  font-family: Arial;
  font-size: 40px;
  font-weight: bold;
}


#socialContactLinksBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#socialContactLinksBox a img {
  height: 55px;
  padding-left: 20px;
}

#motDeBienvenue {
  font-family: Arial;
  font-size: 30px;
  font-weight: bold;
}

#mainScreen .wrap {
  /*padding-top: 20px;*/
  display: flex;
  flex-direction: column;
  /*align-items: flex-end;*/
  text-align: left;
  /*height: 100%;*/
}

/*#mainScreen .mainScreen-shadow {
  height: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*.content {
  font-size: 15px;
}
*/
h1 {
  font-family: Arial;
  font-size: 40px;
  font-weight: bold;
}

.robot {
  /*width: 600px;*/
  width: 50%;
  /*display: flex;*/
}

.logos {
  /*width: 300px;*/
  width: 20%;
  /*display: flex;*/
}

.cartes {
  /*width: 600px;*/
  width: 50%;
  /*display: flex;*/
}

.logoclubs {
  /*width: 600px;*/
  width: 50%;
  /*display: flex;*/
}

form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.button {
  background-color: red;
  border: 2px;
  outline: 2px solid red;
	cursor: pointer;
	box-sizing: border-box;
}


/*For mobile adaptation*************************************** */

@media (max-width: 490px) 
{
    #timingAPI
    {
        display: none;
    }
}
/*

@media screen and (max-width: 1150px) {
  section {
      padding: 80px 0;
  }
}

@media screen and (max-width: 700px) {
  section .text-content {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  section .text-content h2, section .text-content p {
      text-align: center;
  }


  section .text-content h2 {
      font-size: 24px;
  }

  section .text-content p {
      font-size: 14px;
      line-height: 1.4;
  }

  section .text-and-img {
      flex-direction: column-reverse;
  }

  section .img-content {
      margin-bottom: 40px;
  }

  section .img-content img {
      height: 100px;
  }

  .list {
      display: flex;
      flex-direction: column;
      align-items: left;
  }
}
*/