* {
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  color: papayawhip;
  /*background: $bodyBgColor;*/
  background: linear-gradient(90deg, rgb(68, 68, 68) 0%, rgb(204, 18, 18) 46%, rgb(68, 68, 68) 100%);
  margin: 0;
}

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

a:hover {
  color: #e6e6e6;
}

a.active {
  color: #e6e6e6;
}

hr {
  border: 1px dashed #e6e6e6;
}

h1 {
  color: #ff00ff;
  font-size: 2em;
  text-shadow: 1px 1px 1px #282a36;
  margin-bottom: -10px;
}

h2 {
  color: #00ff00;
  font-size: calc(2em - 5%);
  text-shadow: 1px 1px 1px #282a36;
}

h3 {
  color: #ff00ff;
  font-size: 1.6em;
  text-shadow: 1px 1px 1px #282a36;
}

h3.sub {
  color: #e6e6e6;
  font-size: 1.2em;
  text-shadow: 1px 1px 1px #282a36;
}

.avatar {
  width: 130px;
  height: 130px;
  border: 1px solid #333;
  border-radius: 4px;
  float: left;
  margin-right: 10px;
  background: #123456;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.lead {
  font-size: 2rem;
}

.sublead {
  color: #00FFFF;
  font-size: 1.6em;
  text-shadow: 1px 1px 1px #282a36;
}

.headline {
  color: lightgreen;
  font-size: 2em;
  font-family: sans-serif;
  text-shadow: 1px 1px 1px #282a36;
  border-bottom: 1px dotted lightgreen;
}

.subline {
  color: peachpuff;
  font-size: calc(2em - 10%);
  font-family: sans-serif;
  text-shadow: 1px 1px 1px #282a36;
}

.footer {
  text-align: center;
  padding: 10px;
}

.font-normal, p {
  font-size: 18px;
}

.p-3 {
  padding: 10px;
}

.text-center {
  text-align: center;
}

.text-hyphens {
  text-align: justify;
  hyphens: auto;
}

.sticky-top {
  position: sticky;
  top: 0;
}

.navigation {
  width: 100vw;
  padding: 0 0 5px 0;
  margin: 0;
  background: linear-gradient(90deg, rgb(68, 68, 68) 0%, rgb(204, 18, 18) 46%, rgb(68, 68, 68) 100%);
  border-bottom: 1px solid #666;
  text-align: center;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.col-33 {
  flex: 33.3333%;
}

.col-50 {
  flex: 50%;
}

.border-bottom {
  padding-bottom: 5px;
  border-bottom: 1px solid #666;
}

.colorbox {
  color: #4d4d4d;
  width: 200px;
  height: 60px;
  padding: 5px 10px;
  margin: 5px;
  text-shadow: 1px 1px 1px #e6e6e6;
}

/* Responsive layout - makes a one column-layout instead of a two-column layout */
@media (max-width: 800px) {
  .col-33 {
    flex: 100%;
  }
  .col-50 {
    flex: 100%;
  }
}
/* ############# Gallery Section ############# */
img {
  width: 100%;
}

.img-row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

.img-frame {
  /*object-fit: contain;*/
  /*height: 20vw;*/
  width: 100vw !important;
  max-width: 300px;
  aspect-ratio: 5/4;
  object-fit: cover;
  object-position: top center;
}

/* Create four equal columns that sits next to each other */
.column {
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media (max-width: 800px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
}
/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
}

/*# sourceMappingURL=style.css.map */
