body {
  height: 100%;
  margin: 0;
  min-height: 55vh;
  color: white;
  text-align: justify;
  font-family: "Datatype", monospace;
  font-weight: 100;
  font-style: normal;
  background-color: #667465;
  background-image: url("wall.png");
  background-repeat: repeat;
  background-size: 230px;
  border: transparent;
  position: relative;
}

a:link {
  color: #A357AB;
}

a:visited {
  color: lightblue;
}

hr {
  margin-top: 70px;
  margin-bottom: 70px;
}

h2, h3 {
  margin-bottom: 0;
}

.faded-text {
  -webkit-mask-image: linear-gradient(to right, black 20%, transparent);
}

.text {
  margin-right: 110px;
  margin-left: 110px;
  margin-bottom: 15px;
}

.dark-bg {
  background-color: #0C1227;
  background-image: url("Triangles.png");
  background-repeat: repeat;
  background-size: 600px;
  animation: bg-move 10s linear infinite;
}

@keyframes bg-move {
    from {
        background-position: 0 0;
    }
    to {
        background-position: -600px 600px;
    }
}

.header {
  min-height: 5vh;
  bottom: 0;
  margin: 0;
}

.footer {
  min-height: 5vh;
  bottom: 0;
  margin: 0;
}

.borde {
  margin: 0;
  border-top: solid;
  border-top-color: #8B0707;
  border-top-width: 12px;
  border-bottom: solid;
  border-bottom-color: #8B0707;
  border-bottom-width: 12px;
  height: 60px;
  background-image: url("tile-border.png");
  background-repeat: repeat;
}

.repeat-mold {
  width: 100%;
  height: 100px;
  position: relative;
}

.repeat-mold::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("mold.png");
  background-repeat: repeat-x;
  background-size: auto 100%;
}

.mold-upside-down {
  width: 100%;
  height: 100px;
  position: relative;
}

.mold-upside-down::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("mold-up.png");
  background-repeat: repeat-x;
  background-size: auto 100%;
}

.crumpled {
  opacity: 1;
  transition: opacity 1s;
  float: left;
}

.right-side {
  float: right;
  transform: scaleX(-1);
}

.drawings {
  width: 5%;
}


/* for mobile */
@media screen and (max-width: 400px) {
  .text {
    padding-right: 0;
    padding-left: 0;
    margin-right: 5%;
    margin-left: 5%;
    width: 90%;
  }
  .drawings {
    width: 10%;
  }
}