body {
  margin: 0;
  background: #222;
  width: 100%;
  height: 100vh;
  color: #fff;
}
svg {
  cursor: pointer;
  width: 30vw;
  fill: #fff;
}
svg > path:nth-child(3) {
  fill: url(#logo-gradient);
}
canvas {
  position: absolute;
}
ul{
  list-style-type: none;
  margin: 0 5%;
  padding: 0;
}

@keyframes textShine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
.cursor:after {
  content: "_";
  opacity: 0;
  animation: cursor 1s infinite;
}

@keyframes cursor {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.logo {
  font-size: 55px;
  letter-spacing: 0px;
  font-weight: 900;
  margin: 5px;
  background: linear-gradient(
    105deg,
    #fff 70%,
    orange 75%,
    purple 85%,
    blue 95%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  /* text-fill-color: transparent; */
  background-size: 105% auto;
  animation: textShine 2s ease-in-out infinite alternate;
}
.container {
  font-family: sans-serif;
  font-family: "Audiowide", cursive;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  height: 100dvh;
  flex-direction: column;
  position: relative;
}
.homepage {
  position: fixed;
}
.main {
  /* justify-content: start; */
  padding: 0 10px;
}
.main > p {
  /* margin: 10px; */
  padding: 0 15px;
  font-size: 15px;
  font-family: monospace;
}
.slogen{
  cursor: pointer;
}
.main-menu {
  width: 100%;
}
.main-menu ul {
  display: flex;
  margin-bottom: 5px;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.main-menu ul li {
  font-size: 11px;
  margin: 10px;
  cursor: pointer;
  font-family: monospace;
  width: 28%;
}
.main li {
  font-size: 16px;
  /* margin: 0 5%; */
  cursor: pointer;
  font-family: monospace;
  width: 100%;
  font-weight: 100;
  /* color: #fff; */
  /* text-align: center; */

}
footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  position: fixed;
  bottom: 10px;
  font-size: 22px;
  font-family: monospace;
}
footer a {
  color: inherit;
  text-decoration: none;
}
footer a span {
  display: none;
}
footer > div {
  margin: 0 5px;
}
.hidden {
  display: none;
}
.text-purple {
  color: rgb(218, 124, 218);
}
.text-blue {
  color: rgb(137, 137, 253);
}
.text-orange {
  color: rgb(255, 212, 132);
}
.text-green{
  color:rgb(128, 255, 128);
}
div.container-main h2,
div.container-main p,
div.container-main ul li{
    display: none
}
div.container-main h2{
    text-align: center;
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 1280px;
    font-family: sans-serif;
    font-family: "Audiowide", cursive;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-direction: column;
    position: relative;
    margin: auto;
  }
  .container-main {
    display: flex;
    flex-direction: row;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
  .main {
    width: 30%;
    /* width: 40%; */
    min-width: 22%;
    padding: 0px;
    font-weight: 100;
    font-family: monospace;
    font-size: 12px;
  }
  div.container-main > div:nth-child(1){
    width: 80%;
    margin-bottom: 2rem;
  }
  
  div.container-main > div:nth-child(1) p{
      text-align: center;
      font-size: 1.1rem;

  }
  div.container-main > div:nth-child(1) > ul{
    display: flex;
    justify-content: space-around;
  }
  div.container-main > div:nth-child(1) li{
       margin: 0;
}
  .main li {
    /* margin: 0.3em 5%; */
    text-align: left;
    font-size: 1em; 
    display: none;
  }
  footer {
    bottom: 5px;
    font-size: 12px;
  }
  footer > div {
    margin: 0 10px;
  }

  footer a span {
    display: inline-block;
  }
  .main-menu {
    width: auto;
  }
  .main-menu ul li {
    font-size: 15px;
    width: auto;
  }
}
