@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap');

html,
body,
.container {
  height: 100%;
  font-family: "IBM Plex Sans", monospace;
  color: #f8f8f2;
}

h1 {
  font-size: 50px;
  font-weight: 700;
}

h2 {
  font-size: 20px;
  font-weight: 400;
}

a {
  color: #f8f8f2;
  text-decoration-line: underline;
  text-decoration-style: dotted;
}

a:hover {
  color: #8be9fd
}

img path:hover {
  fill: #8be9fd
}

.background {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(45deg, #8a3ffc 10%, #0f62fe 100%);
}

#content {
  position: absolute;
  display: block;
  width: 100%;
  top: 0;
  padding-top: 20em;
}

.left {
  position: absolute;
  width: 48%;
  text-align: right;
}

.right {
  position: absolute;
  text-align: left;
  left: 52%;
  width: 30%;
  font-weight: 400
}

#content #socials img {
  margin-top: 4px;
  height: 27px
}

canvas {
  height: 100%;
  width: 100%;
  transform: scale(1.5);
  filter: blur(100px);
}

@media screen and (max-width: 520px) {
  canvas {
    transform: scale(1);
    filter: blur(70px);
    min-height: 900px;
    min-width: 700px;
  }

  #content {
    height: 100%;
    overflow: scroll;
    padding-top: 0
  }

  .left {
    width: 100%;
    text-align: center;
    top: 2em;
  }
  
  .right {
    width: 80%;
    left: 10%;
    top: 13em;
    text-align: center;
  }
}