
@import url("berlin.css");

/* ------------------------------------------------------------------ */
/* Custom changes.                                                    */
/* ------------------------------------------------------------------ */

.anchor-link {
    opacity: 0;
}
:hover > .anchor-link {
    opacity: 0.3;
}
.siteinfo-footer {
    margin: 0 auto;
    padding: 0;
    max-width: 100%;
}
.grid {
  display: grid;
  color: red;
 
  grid-template-columns:
    repeat(
      auto-fit,
      minmax(
        clamp(10%, 100px, 100%),
        1fr
      )
    );
}
.page {
  background-color: #FEFCF7;
}
h1:first-of-type {
  margin-bottom: 0;
}
h2:first-of-type {
  margin-top: 0;
}
p:first-of-type {
  text-align: left;
}
p {
  text-align: justify;
  hyphens: auto;
}
