/* Import fonts and icons */
@import url("https://fonts.googleapis.com/css2?family=Varela+Round&display=swap");

* {
  margin: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: "liga" on;
}

body {
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  -webkit-animation: gradient 15s ease infinite;
  animation: gradient 15s ease infinite;
  height: 100vh;
  font-family: "Varela Round", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 18px;
}

h1,
h2,
h3,
p {
  margin-bottom: 20px !important;
  text-align: center;
}

a.mailto {
  color: #ffffff;
  text-decoration: none;
  padding-top: 20px !important;
}

img.logo {
  max-width: 50vw;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  body {
    margin: 0 6 0px;
  }

  img.logo {
    max-width: 90vw;
  }
}

@-webkit-keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
