/* general ********************************************************************************************/
body {
  background-color: #ece4f0;
  font-family: verdana;
  font-size: 11.5pt;
  line-height: 1.6;
  display: grid;
}

img.fit {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

img.ref {
  width: 280px;
  height: 400px;
  border: solid 1px #a873bf;
}

ul, ol, ol li, ul li {
  margin-left: 10px;
  padding: 0px;
}

/* grid ***********************************************************************************************/
@media (min-width: 600px) { 
	body {
    grid-template-columns: 1fr 1fr 1fr;	}
}

header {
  grid-column: 1 / -1;
  grid-row: 1 / 2;
}
nav {
  grid-column: 1 / 2;
  grid-row: 2 / 5;
}

main {
  grid-column: 2 / -1;
  grid-row: 2 / 5;
}

article.1 {
  grid-column: 1 / 2;
  grid-row: 5 / 6;
}
article.2 {
  grid-column: 2 / 3;
  grid-row: 5 / 6;
}
article.3 {
  grid-column: 3 / 4;
  grid-row: 5 / 6;
}
article.4 {
  grid-column: 1 / 2;
  grid-row: 6 / 7;
}
article.5 {
  grid-column: 2 / 3;
  grid-row: 6 / 7;
}
article.6 {
  grid-column: 3 / 4;
  grid-row: 6 / 7;
}

section {
  grid-column: 1 / -1;
  grid-row: 7 / 8;
}

footer {
  grid-column: 1 / 3;
  grid-row: 20 / 21;
}

footer.social {
  grid-column: 3 / 4;
  grid-row: 20 / 21;
}

/* color, alignment and more... ***********************************************************************/
h1,h2,h3,h4,h5,h6 {
  color: #a873bf;
  text-align: left;
}

hr {
   width: 100%;
   border-top: 1px solid #a873bf;
   margin-right: auto;
   margin-left: auto;
   margin-top: 5px;
   margin-bottom: 5px;
   background-color: transparent;
}

a.nav:link, a.nav:visited {
  color: #283380;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

a.footer:link, a.footer:visited {
  color: black;
  text-decoration: none;
}

a.nav:hover, a.nav:active, a.footer:hover, a.footer.active {
  background-color: white;
}

/* background-color "WHITE" ***************************************************************************/
header, section, article {
  background-color: white;
}

/* padding: 10px **************************************************************************************/
header, nav, article, section, footer {
  padding: 10px;
}

/* --- SPECIALS --- ***********************************************************************************/
nav {
  background-color: #ece4f0;
}

header, article, section {
  border: 5px solid #ece4f0;
}

td.title {
  font-size: large;
  font-weight: bold;
  color: #a873bf;
}

footer {
  background-color: #ece4f0;
  font-size: 10pt;
}

a.social {
	text-decoration: none;
}