@import url("https://fonts.googleapis.com/css?family=Josefin+Sans&display=swap");

:root {
  --primary: #ddd;
  --dark: #333;
  --light: #fff;
  --hlight: #d3d3d3;
  --shadow: 0 1px 5px rgba(104, 104, 104, 0.8);
}

html {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark);
}

.navwrapper {
  display: grid;
  grid-gap: 20px;
}

.main-nav ul {
  display: grid;
  grid-gap: 20px;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(5, 1fr);
}

.main-nav a {
  background: var(--primary);
  display: block;
  text-decoration: none;
  padding: 0.8rem;
  text-align: center;
  color: var(--dark);
  text-transform: uppercase;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
}

.main-nav a:hover {
  background: var(--dark);
  color: var(--light);
}

body {
  background: rgb(153, 142, 142);
  margin: 30px 50px;
  line-height: 1.4;
}

.nextto li {
  list-style-image: url(../img/ekz.jpg);
  display: block;
}

.btn {
  background: var(--dark);
  color: var(--light);
  padding: 0.6rem 1.3rem;
  text-decoration: none;
  border: 0;
  text-align: center;
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-right: 20px;
}

img {
  max-width: 100%;
  max-height: 100%;
}

.button {
  padding: 0.6rem 1.3rem;
  text-align: center;
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.button a:hover {
  background: var(--hlight);
  color: var(--dark);
}

.albums {
  font: 0.75em sans-serif;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  grid-gap: 20px;
}

.album {
  background: #d3d3d3;
  box-shadow: var(--shadow);
  padding: 20px;
  display: grid;
  grid-template-columns: 150px 1fr;
  grid-gap: 10px;
  align-items: center;
  text-decoration: none;
}

.album h2 {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}

.album__details {
  text-decoration-color: none;
}

.lftwrapper {
  display: grid;
  grid-gap: 1px;
  grid-template-columns: repeat(2, [col] 150px);
  grid-template-rows: repeat(2, [row] auto);
  /*background-color: #fff;*/
  color: #444;
}

.box {
  background-color: #444;
  color: #fff;
  border-radius: 5px;
  padding: 20px;
  font-size: 150%;
}

.box .box {
  background-color: #ccc;
  color: #444;
}

.a {
  grid-column: col / span 4;
  grid-row: row 1;
}

.b {
  grid-column: col 4 / span 1;
  grid-row: row 1;
}

.c {
  width: auto;
  grid-column: col / span 3;
  grid-row: row 3;
}

.d {
  grid-column: col 3 / span 2;
  grid-row: row 3;
  display: grid;
  grid-gap: 10px;
  grid-template-columns: 1fr 1fr;
}

.e {
  grid-column: 1/ 3;
  grid-row: 1;
  /*font-size: 1.2rem;*/
  background-color: #444;
  color: #fff;
  border-radius: 5px;
  padding: 10px;
  margin: 3px;
  font-size: 1rem;
  border: #333 solid 3px;
  text-indent: 30px;
}

.f {
  grid-column: 1;
  grid-row: 2;
  font-size: 1rem;
}

.g {
  grid-column: 2;
  grid-row: 2;
}

.structuur {
  grid-column: col 1 / span 4;
  grid-row: row 1;
  box-shadow: var(--shadow);
  border: #333 solid 3px;
}

.foto {
  grid-column: col / span 3;
  grid-row: row 3;
  display: flex;
}

.foto img {
  object-fit: contain;
}

.foto2 {
  grid-column: col / span 3;
  grid-row: row 3;
  display: flex;
}

.embleem {
  grid-column: col 4 / span 1;
  grid-row: row 1;
  border: #333 solid 3px;
  border-radius: 5px;
}

.fullspan {
  grid-column: col 1 / span 3;
  grid-row: row 10;
}

.picture {
  padding: 1rem;
  background-size: cover;
  vertical-align: middle;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.img-circle {
  border-radius: 50%;

  border: 3px dashed rgb(197, 132, 11);
}

.picbox {
  background-color: #444;
  color: #fff;
  border-radius: 5px;
  padding: 2px;
  font-size: 150%;
}

.bio {
  background-color: #444;
  color: #405568;
  border-radius: 5px;
  padding: 20px;
  font-size: 100%;
  border: #333 solid 3px;
}

/* unvisited link */
.bio a:link {
  color: rgb(17, 17, 17);
}

/* visited link */
.bio a:visited {
  color: rgb(153, 142, 142);
}

/* mouse over link */
.bio a:hover {
  color: rgb(197, 132, 11);
}

/* selected link */
.bio a:active {
  color: blue;
}

.bio .regiment {
  float: right;
  position: absolute;
  background-color: azure;
  width: 150px;
  height: 150px;
  z-index: 5;
}

#regiment {
  padding: 10px;
  float: right;
  position: relative;
  background-color: azure;
  width: 450px;
  height: 150px;
  overflow: auto;
  column-count: 3;
  column-gap: 40px;
  display: flex;
  border-radius: 5px;
  background-color: #ccc;
  border-color: #333;
  border: #333 solid 3px;
}

.regl {
  display: grid;
  padding: 0.1rem;
  position: relative;
  float: left;
}

.regm {
  display: flex;
  padding: 0.1rem;
  position: relative;
  float: none;
}

.regr {
  display: grid;
  padding: 0.1rem;
  position: relative;
  float: right;
  object-fit: cover;
}

.regr > img {
  padding: 1px;
  width: 100%;
  max-height: 100%;
}

.column {
  float: left;
  width: 33.33%;
  padding: 5px;
}

/* Clear floats after image containers */
.row::after {
  content: "";
  clear: both;
  display: table;
}

.vcard h6 {
  font-size: 1.8rem;
  text-decoration: underline;
  text-shadow: 1px 1px #bbb4b4;
  color: #413f3f;
}

.vcard h7 {
  font-size: 1 rem;
  text-decoration: underline;
  text-shadow: 1px 1px #bbb4b4;
  color: #413f3f;
}

.textadd h8 {
  font-size: 2 rem;
  text-decoration: underline;
  text-shadow: 1px 1px #bbb4b4;
  color: #413f3f;
}

.e li.ekz {
  list-style-image: url(../img/ekz.png);
  display: block;
  margin-top: 1em;
  margin-bottom: 1 em;
  margin-left: 0;
  margin-right: 0;
  padding-left: 40px;
}

.e h6 {
  color: var(--dark);
  text-shadow: 1px 1px #413f3f;
  font-size: 1.2rem;
  text-decoration: underline;
}

.misclftw {
  background-color: rgb(67, 84, 104);
  padding: 1.5rem;
  margin: 1.5rem;

  color: rgb(12, 12, 12);
  border-radius: 5px;
}

.sky {
  background-image: url("../img/cloudsbw.jpg");
}

.leftround {
  margin: 0.01rem;
  padding: 1rem;
  display: block;
  border-radius: 5px;
  align-items: left;
  background-color: #a3b1b4;

  border: #333 solid 3px;
}

.textadd {
  font-family: "Germania One", cursive;
  padding: 15px;
  margin: 19px;
  font-size: 1rem;
  /*text-shadow: 0.5px 3px #e4aa3e;*/
  font-style: italic;
  text-indent: 30px;
  color: #5f5e64;
  word-spacing: 2px;
}

.vcard {
  font-size: 1rem;
  /*text-shadow: 1px 1px #413f3f;*/
}

.sky h6 {
  color: var(--dark);
  text-shadow: 1px 1px #413f3f;
  font-size: 1.2rem;
  text-decoration: underline;
}

.textadd .pic {
  padding: 50px;
  position: relative;
  float: right;
  align-content: justify;
  max-height: 120px;
  max-width: 120px;
}

.textadd .nextto {
  float: left;
  position: relative;
  align-content: left;
}

li.ekz {
  position: relative;
  list-style-image: url(../img/eksmall.png);
  width: 10px;
  height: 10px;
  display: block;
  margin-top: 1em;
  margin-bottom: 1 em;
  margin-left: 0;
  margin-right: 0;
  padding-left: 40px;
}

.photogallerylink {
  position: relative;
  border: #333 solid 3px;
  border-radius: 5px;
  background-color: #a3b1b4;
  box-shadow: #333;
}

.tripleft {
  position: relative;
}

.tripright {
  position: relative;
}

#end {
  position: relative;
  display: grid;
  height: auto;
  grid-template-columns: 1fr 2fr 1fr;
}

.topbox1 {
  position: relative;
  display: grid;
  height: auto;
  grid-template-columns: 1fr 2fr 2fr;
  position: relative;
  border: #333 solid 3px;
  border-radius: 5px;
  background-color: #a3b1b4;
  box-shadow: #333;
}

.topbox2 {
  position: relative;
  padding: 5px;
  background: var(--dark);

  border: #333 solid 3px;
  border-radius: 5px;
}

.toppic {
  float: left;
  display: inline-block;
  justify-content: right;

  padding: 25px;
  padding-right: 50px;
}

.topleft {
  position: relative;
  padding: 15px;
}

.topright {
  position: relative;
  padding: 25px;
}

.topcard {
  padding: 10px;
}

.topcard h6 {
  font-family: "Germania One", cursive;
  padding: 15px;
  margin: 19px;

  /*text-shadow: 0.5px 3px #e4aa3e;*/
  font-style: italic;
  text-indent: 30px;

  word-spacing: 2px;
  color: var(--dark);

  font-size: 4rem;
  text-decoration: underline;
}

.reggrid {
  overflow: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(100px, auto);
  grid-gap: 1rem;
  padding-left: 25px;
  padding-right: 25px;
  padding-bottom: 1px;
  padding-top: 25px;
  border: #333 solid 3px;
  border-radius: 5px;
  background-color: #e5eef0;
  margin-right: 1px;
  height: auto;
}

.lu {
  padding: 3px;
  position: relative;
  display: grid;
  justify-self: center;
}

.ru {
  position: relative;
  display: grid;

  margin: 2px;
  justify-self: center;
}

.ld {
  position: relative;
  display: grid;
  justify-self: center;
}

.rd {
  position: relative;
  display: grid;
  float: right;
  justify-self: center;
}

.tabletop {
  width: 0px;
  border-collapse: collapse;
  border: none;
  margin-left: auto;
  margin-right: auto;
  height: 221px;
}

.lcoltt {
  font-size: 0.8rem;
}

.smallinks {
  font-size: 0.7rem;
}

.singleunit {
  height: 100px;
  width: 100px;
  overflow: auto;
  float: left;
  padding: 25px;
  border: #333 solid 3px;
  border-radius: 5px;
  background-color: #e5eef0;
  position: absolute;
  top: 0;
  right: 0;
}

.smallcaption {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.6rem;
}

.box figure {
  padding: 9px;

  position: relative;
  display: grid;
}

.box figure img {
  border: #333 solid 3px;
  border-radius: 5px;
  background-color: #a3b1b4;
}

.box figure img.small {
  height: 170px;
  width: 250px;
}

.zg26 {
  background-color: #2f9704;
}

footer {
  margin-top: 2rem;
  background: var(--dark);
  color: var(--light);
  text-align: center;
  padding: 1rem;
}

.lftextadd {
  font-family: "Josefin Sans", sans-serif;
  padding: 25px;
  margin: 25px;
  font-size: 1rem;
  /*text-shadow: 0.5px 3px #e4aa3e;*/
  font-style: italic;
  text-indent: 10px;
  color: #5f5e64;
  word-spacing: 1px;
}

.leftround2 {
  margin: 0.01rem;
  padding: 5rem;
  display: block;
  border-radius: 5px;
  align-items: left;
  background-color: #a3b1b4;

  border: #333 solid 3px;
}

.TopboxIndexLFTW {
  padding: 1px;
  display: block;
  background: url("../../img/lftwbanner.jpg");
  background-size: cover;
  background-position: top;
  border: #333 solid 3px;
  border-radius: 5px;
  background-color: #a3b1b4;
  box-shadow: #333;
  min-height: 400px;
}

.reggriddouble {
  overflow: auto;
  display: flex;
  grid-template-columns: repeat(2, 1fr);

  grid-gap: 1rem;
  padding-left: 25px;
  padding-right: 25px;
  padding-bottom: 10px;
  padding-top: 25px;
  border: #333 solid 3px;
  border-radius: 5px;
  background-color: #e5eef0;
  margin-right: 10px;
  height: auto;
}
