body, html {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  overflow: hidden;
  background-color: #121312;
  -webkit-animation-name: couleur;
  animation-name: couleur;
  -webkit-animation-duration: 15s;
  animation-duration: 15s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

@-webkit-keyframes couleur {
  50% {
    background-color: #131213; }
  100% {
    background-color: #121312; } }

@keyframes couleur {
  50% {
    background-color: #121312; }
  100% {
    background-color: #131213; } }

.logo {
  display: none; }

img.logo {
  width: 40px; }

.type {
  display: block; }

img.type {
  width: 120px; }

@media screen and (max-width: 580px) {
  .logo {
    display: block; }
  .type {
    display: none; } }

a {
  margin: 50px;
  text-decoration: none;
  text-align: center;
  line-height: 40px;
  color:rgba(255, 255, 255, 1);
  font-family: 'Roboto Slab';
  font-weight: 300;
  font-size: 30px;
  min-width: calc((50%)/2);
  width: 130px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  background-color: rgba(255, 255, 255, 0);
  -webkit-transition: background 1s;
  -o-transition: background 1s;
  transition: background 1s;
  -webkit-transition: border 1s;
  -o-transition: border 1s;
  transition: border 1s;
  border-radius: 5px;
  border-style: solid;
  border-width: 0px;
  border-color: rgba(255, 0, 0, 0); }
  a:hover {
    /*background-color: rgba(0, 0, 0, 0.8);*/
    border-style: solid;
    border-width: 3px;
    border-color: rgba(255, 255, 255, 1); }
  a div {
    margin: auto;
    -webkit-transform: translateZ(20px);
    transform: translateZ(20px); }

iframe {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto; }
