html,

body {
  width: 100vw;
  margin: 0;
  padding: 0;
  background-color: #E8E8E8;
  font-family: helvetica, sans-serif;
  font-size: 12pt;
  overflow-x: hidden;
  overflow-y: scroll;
}

* {
  box-sizing: border-box;
}

img {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

a {
  color: #000000;
  text-decoration: none;
}

.section {
  position: relative;
  width: 100vw;
}

.section--top {
  height: 100vh;
}

.img--middle {
    margin-top: 150px;
    display: flex;


}

.section--about {
  padding: 20px;
  padding-top: 60px;
}

@media(min-width: 500px) {
  .section--about {
    padding: 60px;
  }
}

.about__text {
  margin-top: 0;
  margin-bottom: 60px;
  text-align: justify;
}

.border {
  border-bottom: 1px solid #000000;
}

.img--logo {
  display: block;
  position: absolute;
  width: 100vw;
  height: auto;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.img--generativecode {
  top: 0;
  -webkit-mask: linear-gradient(#000000, transparent);
  mask: linear-gradient(#000000, transparent);
}



.img--artcodr {
  bottom: 0;
  -webkit-mask: linear-gradient(transparent, #000000);
  mask: linear-gradient(transparent, #000000);
}

#drawingCanvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.gallery__item {
  padding: 20px;
  padding-top: 0;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}

@media(min-width: 500px) {
  .gallery__item {
    padding: 60px;
    padding-top: 0;
  }
}

.gallery__img {
  width: 100%;
}

.section--contact {
  padding: 20px;
}

@media(min-width: 500px) {
  .section--contact {
    padding: 60px;
    padding-top: 20px;
  }
}

.contact__inner {
  width: 100%;
  display: flex;
  padding-top: 20px;
}

.contact__column {
  width: 50%;
}

.contact__text {
  margin: 0;
}
