#preload {
  z-index:999;
  width:100%;
  height:100%;
  background-color:#fff;
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  right:0;
}
.author {
  border-radius: 5px;
}
.author:hover {
  transition: 1s;
  transform: rotate(360deg);
  border-radius: 50%;
  filter: saturate(150%);
}
#tema {
  background-color: #000;
  border-radius: 50%;
}
.icon-footer li {
  width: 30px;
  height: 30px;
}
.moon {
  background-image: url("img/moon.jpg");
  background-size: cover;
  background-position: center;
}
.sun {
  background-image: url("img/sun.jpg");
  background-size: cover;
  background-position: center;
}
body{
  transition: 1s all;
}
.input-command {
  position: absolute;
  left: 10px;
  top: 50%;
}
#command {
  width: 100px;
  font-size: 10px;
  box-shadow: 0 0 3px 1px rgb(10,88,202);
}
#notif {
  width: 100%;
  font-size: 10px;
  /*box-shadow: 0 0 3px 1px rgb(10,88,202);*/
  text-align: center;
  position: absolute;
  z-index: 99;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-200%);
  transition: .8s;
}
.mrq {
  animation: mrq 3s linear infinite;
  transition: 1s;
  display: inline-block;
}
.container-fluid,#L2 {
  overflow-x: hidden;
}
@keyframes mrq {
  10% {
    transform: translateX(0%);
  }
  
  50% {
    transform: translateX(-50%);
  }
  
  90% {
    transform: translateX(-110%);
  }
}