:root {
--textcolor: white;
--color1: darkgreen;
--color2: #2d2d2d;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  color: var(--textcolor);
}
h1,h2 {
  font-family: "Nunito", sans-serif;
  color: var(--textcolor);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.1;
}

a, a:link, a:visited, a:hover, a:active {
  text-decoration: none;
  color: inherit;
}

.parent {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  
  background: linear-gradient(90deg, var(--color1), var(--color2));
  background-size: 400% 400%;

  -webkit-animation: sliding 20s ease infinite;
  -moz-animation: sliding 20s ease infinite;
  animation: sliding 20s ease infinite;
}

.head {
  display: flex;
  align-items: center;
  padding: 1em;
}

.logotext {
  margin-left: 0.5em;
  font-size: 22px;
  letter-spacing: 0.2em!important;
}


.logo {
  width: 30px;
  height: 30px;
  background-position: 0, 0;
  background-size: 100%;
  background-repeat: no-repeat; 
  background-image: url('images/feherlogo.svg');
}

.centerme {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}





@-webkit-keyframes sliding {
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}
@-moz-keyframes sliding {
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}
@keyframes sliding {
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}