.mogra-regular {
  font-family: "Mogra", system-ui;
  font-weight: 400;
  font-style: normal;
}

.oi-regular {
  font-family: "Oi", serif;
  font-weight: 400;
  font-style: normal;
}

.flavors-regular {
  font-family: "Flavors", cursive;
  font-weight: 400;
  font-style: normal;
}

.press-start-2p-regular {
  font-family: "Press Start 2P", system-ui;
  font-weight: 400;
  font-style: normal;
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Mogra";
    font-weight: 400;
    font-style: normal;
  background: white;
  color: #000000;
}

@property --rotate {
  syntax: "<angle>";
  initial-value: 132deg;
  inherits: false;
}

body {
  background: black;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 1rem;
  padding-bottom: 2rem;
  box-sizing: border-box;
}

.header {
  background: black;
  width: 95%;
  height: 50vh;
  padding: 10px;
  position: relative;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.header::before {
  content: "";
  width: 105%;
  height: 110%;
  border-radius: 10px;
  background-image: linear-gradient(
    var(--rotate)
    , #FFC857, #628aff 43%, #4e00c2);
    position: absolute;
    z-index: -1;
    top: -4%;
    left: -2%;
    animation: spin 2.5s linear infinite;
}


@keyframes spin {
  0% {
    --rotate: 0deg;
  }
  100% {
    --rotate: 360deg;
  }
}

.header {
  background: black;
}

.logo {
}

.logo h1 {
  font-family: "Oi";
    font-weight: 400;
    font-style: normal;
  font-size: 3.5rem;
  color: #9f5fff;
  padding: 8%;
  text-align: center;
  text-shadow: -1px -1px 0 white, 1px -1px 0 white, 
  1px 1px 0 white, 1px 1px 0 white;}

.logo span {
  font-family: "Press Start 2P";
  color: #628aff;
}

.headerinfo {
  color: white;
  display: none;
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 10pt;
  text-align: center;
}


.hometext {
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 2rem;
  margin: 5% 15%;
}


.footer {
  background: linear-gradient(to right, #FFC857, #4e00c2);
  text-align: center;
  width: 100%;
  color: white;
  padding: 1rem;
}

.footerinfo {
  font-size: 1.5rem;
}


@media (min-width: 768px) {

  .logo h1 {
    font-size: 5em;
    padding: 1%;
  }


  main {
    margin: auto
  }


  .footerinfo {
    font-size: 3em;
    padding: 1%;
  }
  
}

@media (min-width: 1150px) {
  .logo h1 {
    font-size: 6.5rem;
    padding: 1%;
  }
  
}