body {
  margin: 0px;
  padding: 0px;
  color: #000;
  font-family: "Lato", sans-serif;
  font-size: 19pt;
}

@import url("https://fonts.googleapis.com/css?family=Lato&display=swap");

#page {
  position: relative;
  min-height: 100vh;
}

header {
  height: 200px;
  background-color: #00cc6a;
  color: #fff;
  font-family: "Lato", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
    124deg,
    #ff2400,
    #e81d1d,
    #e8b71d,
    #e3e81d,
    #1de840,
    #1ddde8,
    #2b1de8,
    #dd00f3,
    #dd00f3
  );
  background-size: 1800% 1800%;

  -webkit-animation: rainbow 18s ease infinite;
  -z-animation: rainbow 18s ease infinite;
  -o-animation: rainbow 18s ease infinite;
  animation: rainbow 18s ease infinite;
}

@-webkit-keyframes rainbow {
  0% {
    background-position: 0% 82%;
  }
  50% {
    background-position: 100% 19%;
  }
  100% {
    background-position: 0% 82%;
  }
}
@-moz-keyframes rainbow {
  0% {
    background-position: 0% 82%;
  }
  50% {
    background-position: 100% 19%;
  }
  100% {
    background-position: 0% 82%;
  }
}
@-o-keyframes rainbow {
  0% {
    background-position: 0% 82%;
  }
  50% {
    background-position: 100% 19%;
  }
  100% {
    background-position: 0% 82%;
  }
}
@keyframes rainbow {
  0% {
    background-position: 0% 82%;
  }
  50% {
    background-position: 100% 19%;
  }
  100% {
    background-position: 0% 82%;
  }
}

main {
  max-width: 800px;
  margin: auto;
  padding-bottom: 8rem;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 2.5rem;
}

.btn {
  color: #fff;
  text-decoration: none;
  padding: 20px;
  background-color: #00b159;
}

.warning {
  padding: 20px;
  background-color: #ffeb3b;
  text-align: center;
}

footer {
  background-color: #4c4a48;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 7rem;
  text-align: center;
  font-size: 15pt;
}

.flnk {
  text-decoration: none;
  color: #ffeb3b;
}

.skype {
  padding: 20px;
  background-color: #d0efe8;
  color: #000;
}
