html {
  height:100%;
  width:100%;
  overflow: hidden;
}

body {
  display: inline-flex;
  width: 99%;
  height:99%;
}

nav {
  width: 15%;
  height: 100%;
  min-width: 175px;
}

nav > section {
  padding: 5px;
  margin: 0;

}

nav > section > ul {
  display: inline-flex;
  width:100%;
  flex-direction: column;
  padding: 0;
  margin: 0;
  list-style-type: none;
  list-style-position: inside;
}

nav > section > ul > li {
  width:100%;
  transition: all 0.5s ease;
  display: inline-flex;
  width:  auto;
  height: 100%;
  align-items: center;
  flex-grow: 1;
  justify-content: center;
}

nav > section > ul > li:hover {
  background-color: lightgray;
}

nav > section > ul > li > a {
  flex-grow: 1;
  align-items: center;
  display: inline-flex;
  text-decoration: none;
  color: black;
  min-height: 25px;
  padding-left: 25px;
}

body > section {
  width: 85%;
  height: 95%;
  overflow-y: scroll;
  padding: 5px;
  margin-right: 10px;
}

td {
  padding: 5px;
}

tr:hover {
  background-color: lightgray;
}

table {
  border-collapse: collapse;
}

aside {
  width:75%;
  padding-left:25%;
}

div.series {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  flex-direction: column;
}

div.series div.preview {
  width:100%;
  display: inline-flex;
  justify-content: center;
  margin:5px;
  align-items: center
}
div.series div.preview:hover {
  background-color: lightgray
}

div.series div.preview div.counter {
  width: 50px;
  text-align: center;
}

div.series div.preview a.link-tile {
  width:100%;
  text-decoration: none;
  color: black;
  padding: 10px;
}

footer {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

blockquote {
  font-style: oblique;
  font-size: 16px;
  margin-left: 32px;
  border-left: 4px solid #CCC;
  padding-left: 8px;
}

.projects-container {
 display: flex;
 height: 100%;
 width: 100%;
 flex-direction: row;
 justify-content: center;
 align-items: center;
 flex-wrap: wrap;
}

.square {
  aspect-ratio: 1/1;
  flex: 0 1 25%;
  margin: 10px;
  /*max-width: 25%;*/
  border: solid black 2px;
  border-radius: 15px;
  padding: 10px;
  transition: 1s;
}

.square img {
  max-height: 100%;
  max-width: 100%;
}

.square:hover {
  aspect-ratio: 1/1;
  flex: 0 1 30%;
  margin: 5px;
  max-width: 30%;
  border: solid black 2px;
  border-radius: 15px;
  padding: 10px;
  transition: 1s;
  transition-timing-function: ease-in-out;
}
