body {
  font-family: Bebas Neue;
    font-size: 35px;
    line-height: 1;
  color: white;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  margin-left: 20px;
  margin-right: 20px;
  margin-top:10px;
  animation: color 60s ease infinite;
}

/*
Header Section
*/
.header-logo-wrapper {
    position:fixed;
    left: 50%;
    top:  50%;
    margin-left: -90px;
    margin-top: -40px;
}

a{
    font-family: Bebas Neue;
    font-size: 35px;
    line-height: 1;
    color: white;
    text-decoration: none;
    animation: color 60s ease infinite;
}

a:hover {
    color: #999999;
}
    
.mail {
  position: fixed;
  left: 0;
  bottom: 20px;
  width: 100%;
  color: white;
  text-align: center;
    animation: color 60s ease infinite;
}

@media (max-width: 768px) 
 {
    body
    {
        font-size: 25px; 
    }
    a
    {
        font-size: 25px;
    }
 }

@keyframes color {
    0% {
        background: #9FD2D6;

    }
    25% {
        background: #A89FD6;
        
    }
    50% {
        background: #9FD2D6;
        
    }
    75% {
        background: #A89FD6;
        
    }
    100% {
        background: #9FD2D6;
        
    }
    }
