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

body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  color: #fff;
}

body {
  background: linear-gradient(-45deg, #000000, #474747, #000000);
  background-size: 400% 400%;
  animation: gradientAnimation 15s ease infinite;
  height: 100vh;
  margin: 0;
  padding: 0;
}

.STUDIOFE_container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

svg#STUDIOFE_BRAND_SVG {
    width: 300px;
}

h1 {
    font-size: 1.5em;
    margin: 50px auto 20px;
}

@media screen and (max-width: 700px) {
	
}