body {
  background-color: #181616;
  /* background-color: white; */
}

footer {
  background-color: #3a3737;
  margin: 0;
  padding: 0;
  border: none;
  width: 100%;
}

h1,
h2 {
  /* Font */
  font-family: Rubik;
  text-align: center;

  /* Make some space above and below */
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

h1 {
  /* https://www.w3schools.in/css3/gradient-text
       https://cssgradient.io/ */
  background: linear-gradient(
    0deg,
    rgba(103, 92, 132, 1) 30%,
    rgba(139, 216, 236, 1) 50%,
    rgba(139, 216, 236, 1) 100%
  );
  background-clip: text;
  color: transparent;

  font-weight: bold;
  font-size: 34pt;
}

h2 {
  color: rgba(139, 216, 236, 1);

  font-weight: normal;
  font-size: 28pt;
}

footer p {
  color: rgb(197, 197, 197);
  padding: 0.1em;
  font-family: monospace;
}

footer a {
  text-decoration: none;
  color: gold;
  background-color: rgba(182, 138, 26, 0.144);
}

.text {
  color: rgb(224, 224, 224);
  margin-left: 20%;
  margin-right: 20%;
  font-size: 13pt;
  font-family: "DejaVu Sans Mono";
}

.pico {
  font-family: Dogica;
  font-size: 12pt;
  text-wrap: nowrap;
}

.pico-img {
  width: 1em;
  height: auto;
}

/* Images */

#strawberry {
  width: 15%;
  margin-top: 2em;
}

img {
  image-rendering: smooth;
}


/* Mobile view */
@media (max-width: 7cm) {
  .text {
    font-size: 22pt;
  }

  .pico {
    font-size: 21pt;
  }

  .block-image-caption {
    font-size: 20pt;
  }
}