@import url("https://fonts.googleapis.com/css?family=Overpass:300,400&display=swap");
* {
  box-sizing: border-box;
}
*::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: "Roboto Mono", monospace;
  font-size: 0.8em;
  font-weight: 400;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  min-height: 100vh;
  color: #2e2e2e;
  background: #fff;
  background-position: center;
  background-attachment: fixed;
}
@media (min-width: 48rem) {
  body {
    font-size: 0.8em;
  }
}


canvas{
  position:fixed;
  left:0;
  top:0;
  z-index:-1;
  width: 100%;
  height: 100vh;
}


input {
  font-family: "Roboto Mono", sans-serif;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: #2e2e2e;
  background: #fff;
  background-position: center;
}

ul {
  list-style: none;
  padding-left: 0;
}

li:not(:last-child) {
  margin-bottom: 15px;
}

#container {
  margin: auto;
  padding: 0 1rem;
  max-width: 48rem;
  width: 100%;
}

#container2 {
  margin: auto;
  padding: 0 1rem;
  max-width: 48rem;
  width: 100%;
}

#fixed {
/*  position: fixed;
  width: 45%;
  top: 50%;
  transform: translateY(-50%);*/
  top:0;
  bottom:0;
  width: 45%;
  position:fixed;
  overflow-y:auto;
  overflow-x:hidden;
}

#fixcenter {
  display:table-cell;
  vertical-align: middle;
}

a {
  text-decoration: none;
  color: black;
  cursor: pointer;
}

.link {
  position: relative;
  transition: -webkit-clip-path 275ms ease;
  transition: clip-path 275ms ease;
  transition: clip-path 275ms ease, -webkit-clip-path 275ms ease;
}
.link:hover span::before, .link:focus span::before {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.link span {
  position: relative;
  display: inline-block;
  color: #2c2fe8;
}
.link span::before {
  position: absolute;
  content: attr(data-content);
  color: #1619cb;
  text-decoration: underline;
  -webkit-text-decoration-color: #1619cb;
          text-decoration-color: #1619cb;
  -webkit-clip-path: polygon(0 0, 0 0, 0% 100%, 0 100%);
          clip-path: polygon(0 0, 0 0, 0% 100%, 0 100%);
  transition: -webkit-clip-path 275ms ease;
  transition: clip-path 275ms ease;
  transition: clip-path 275ms ease, -webkit-clip-path 275ms ease;
}

 span.dotted::before {
   text-decoration-style: dotted;
}
 span.dashed::before {
   text-decoration-style: dashed;
}
 span.double::before {
   text-decoration-style: double;
}
 span.wavy::before {
   text-decoration-style: wavy;
}
 span.rigone::before {
   text-decoration-line: line-through;
