body {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: 35px;
    line-height: 1;
  color: #fff;
  -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 20s ease infinite;
}

@keyframes color {
    0% {
        background: #1F0C7D;
    }
    25% {
        background: #111;
    }
    50% {
        background: #9FD2D6;
    }
    75% {
        background: #111;
    }
    100% {
        background: #1F0C7D;
    }
    }
    
}

/*
Header Section
*/
.header-logo-wrapper {
    position:fixed;
    left: 50%;
    top:  50%;
    margin-left: -90px;
    margin-top: -40px;
}

a{
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: 35px;
    line-height: 1;
    color: #fff;
    text-decoration: none;
}

a:hover {
    color: #999999;
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #fff;
  color: white;
  text-align: center;
    
    
}

.mail {
  position: fixed;
  left: 0;
  bottom: 0;
    margin-bottom: 100px;
  width: 100%;
  color: white;
  text-align: center;
    animation: color 20s ease infinite;
}

@media (max-width: 768px) 
 {
    body
    {
        font-size: 25px; 
    }
    a
    {
        font-size: 25px;
    }
 }