/* CSS styles for itsimple.ch */
body {
	margin: 0;
	padding: 0;
	overflow: hidden;
	font-family: 'Ubuntu';
	line-height: 1.5em;
	background-image: url('../img/bg1920.jpg');
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
      }
/* font color blue global */
.blue {
	color: #034f84;
      }
/* font color orange global */
.orange {
	color: #ff7b25;
        }
p {
  text-align: center;
  }

div.b {
        position: relative;
		text-align: center;
        animation-name: mouseclickanimation;
        animation-duration: 5s;  
        animation-delay: -1s;
        animation-direction: reverse;
      }

@keyframes mouseclickanimation{
        from {left: 15%;}
        to {left: 100%;}
      }                                                                    

footer {
	position: fixed;
	background: #ffa31a;
	bottom: 0;
	width: 100%;
	padding: 3px;
	text-align: center;
	color: #034f84;
       }
       
