@import url('https://fonts.googleapis.com/css2?family=Monoton&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@100;400;500;700&display=swap');

@keyframes size {
  0% {
    background-size: 0;
  }

  100% {
    background-size: 100vw;
  }
}

@keyframes bright {
  0% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(2);
  }

  100% {
    filter: brightness(1);
  }
}
a{text-decoration: none;}

.button {  font-size: 2rem;

  width: auto;
  padding: 1rem 5rem;
  background-image: linear-gradient(100deg, transparent 0px, transparent 50px, black 51px, black calc(100% - 51px), transparent calc(100% - 50px));
}

.button:hover { color:aliceblue; background-image: linear-gradient(100deg, transparent 0px, transparent 50px, #5400ff 51px, #5400ff calc(100% - 51px), transparent calc(100% - 50px));
}

h1 {
  font-size: 9vw;
  margin: unset;
  text-align: center;
}

h2 {
  font-weight: 800;
  text-shadow: 2px 2px #020006;
  font-family: 'Roboto Mono', monospace;
}

p {
  font-family: 'Roboto Mono', monospace;
}

.favicon {
  position: absolute;
  top: 2rem;
  left: 2rem;
}

body {
  font-family: 'Monoton', cursive;
  color: #5400ff;
  text-align: left;
  background-blend-mode: multiply;
  background-position: center;
  background-image: url(favicon.gif);
  animation: size 100ms linear infinite, bright 10000ms linear infinite;
  background-color: #020006;
  border: 1rem solid #5400ff;
  margin: unset;
  padding: 1rem;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}

.row {
  display: flex;
  flex-flow: wrap;
  justify-content: space-around;
}

section:nth-child(1) {
  margin-top: unset;
}

.aitp {
  width: auto;
  margin:0.5rem;max-width:400px;
  padding: 1rem 5rem;
  background-image: linear-gradient(100deg, transparent 0px, transparent 50px, black 51px, black calc(100% - 51px), transparent calc(100% - 50px));
}

section {
  border: 1px dotted #5400ff;
  min-height: 20vh;
  height: 100%;
  margin-top: 1rem;
  display: flex;
  flex-flow: column;
  justify-content: center;
  background-color: #5400ff22;
}

.wrapper
