@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  35% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  35% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
body {
  position: relative;
  min-width: 350px;
  margin: 0px;
  padding: 74px 0 0 0;
  font-family: Verdana;
  font-size: 16px;
  line-height: 1.2;
  color: #2f2f2f;
  background-color: #333333;
}
@media (max-width: 750px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 400px) {
  body {
    font-size: 13px;
  }
}
@media (min-height: 620px) {
  body {
    background-color: white;
    padding-bottom: 40px;
  }
}
b,
strong {
  font-weight: bold;
}
i {
  font-style: italic;
}
.center {
  text-align: center;
}
.hidden {
  display: none;
}
/* entête */
#header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  height: 74px;
  box-shadow: 0px 1px 5px 0px #808080;
  background-color: white;
}
#header .wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
#header .wrapper .logo_left,
#header .wrapper .logo_right {
  position: absolute;
  top: 8px;
  height: 58px;
}
@media (max-width: 600px) {
  #header .wrapper .logo_left,
  #header .wrapper .logo_right {
    top: 12px;
    height: 50px;
  }
}
#header .wrapper .logo_left {
  left: 12px;
}
#header .wrapper .logo_right {
  right: 12px;
}
/* main */
#main {
  box-sizing: border-box;
  position: relative;
  margin: 0 auto;
  padding: 8px 12px;
  max-width: 750px;
}
@media (max-height: 619px) {
  #main {
    background-color: white;
    max-width: 99999px;
  }
}
#main h1 {
  font-size: 140%;
  font-weight: bold;
  margin: 25px 0 14px 0;
}
#main h2 {
  font-size: 115%;
  font-weight: bold;
  margin: 12px 0 8px 0;
}
#main h3 {
  font-size: 105%;
  font-style: italic;
  margin: 12px 0 8px 0;
}
#main p {
  margin: 5px 0;
  text-align: justify;
}
#main #screenshots {
  margin: 2em 0 2em 0;
  text-align: center;
}
#main #screenshots img {
  display: inline-block;
  height: 330px;
}
@media (max-width: 640px) and (min-width: 501px) {
  #main #screenshots img.nexus {
    display: none;
  }
}
@media (max-width: 640px) and (max-width: 500px) {
  #main #screenshots img.ipad {
    display: none;
  }
}
#main #storesLinks {
  margin: 2em 0 2em 0;
  text-align: center;
}
#main #storesLinks a {
  position: relative;
  display: inline-block;
  margin: 1em 2em;
  width: 200px;
}
#main #storesLinks a img.store {
  width: 200px;
}
#main .madedby {
  text-align: center
  /*font-style:italic;*/
}
#main .madedby a {
  position: relative;
  text-decoration: none;
}
#main .madedby a .logo_small {
  position: relative;
  z-index: 1;
  height: 2.5em;
  top: 0.7em;
}
#main .pointer {
  position: absolute;
  z-index: 2;
  height: 22px;
  bottom: -1.2em;
  right: 2.5em;
  opacity: 0;
  -webkit-animation-name: blink;
          animation-name: blink;
  -webkit-animation-duration: 4s;
          animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
#main .pointer.delay1 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
#main .pointer.delay2 {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
#main .pointer.delay3 {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}
#main #langSelection {
  position: absolute;
  top: 20px;
  right: 7px;
  text-align: center;
}
#main #langSelection a {
  display: inline-block;
  width: 32px;
  height: 20px;
  margin: 0 5px;
  overflow: hidden;
  text-indent: -9999px;
  opacity: 0.35;
}
#main #langSelection a.FR {
  background: url("../img/flags/FR.png");
}
#main #langSelection a.EN {
  background: url("../img/flags/EN.png");
}
#main #langSelection a.IT {
  background: url("../img/flags/IT.png");
}
#main #langSelection a.selected,
#main #langSelection a:hover {
  opacity: 1;
}
/* Footer */
#footer {
  box-sizing: border-box;
  min-width: 350px;
  height: 40px;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 13px;
  background: #333333;
  color: white;
}
@media (min-height: 620px) {
  #footer {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 99;
  }
}
@media (max-width: 380px) {
  #footer {
    line-height: 20px;
    padding: 0 10px;
  }
}
#footer a {
  color: white;
  text-decoration: none;
}
