:root {
  --side-padding: 0.66em;
  --font-size: 16px;
  --font-size-smaller: 14px;
  --font-size-smallest: 10px;
  --font-size-bigger: 18px;
}

html {
  box-sizing: border-box;
}
  
*, *:before, *:after {
  box-sizing: inherit;
}
  
blockquote {
  margin: 0;
  padding: 0 0 0 1em;
  border-left: 3px solid;
  border-color: var(--lightest-color);
}
  
a {
  text-decoration: none;
  color: var(--accent);
}

.image {
  width: auto;
  height: auto;
}

body {
  font-family: 'Open Sans', serif;
  font-size: var(--font-size);
  background-color: var(--background-color);
  color: var(--color);
  margin: 0;
  padding: 0.5em;
  line-height: 1.7;
}

h1 {
  font-size: 1.5em;
}

h2 {
  font-size: 1.125em;
}

h3 {
  font-size: 0.8775em;
}

h4 {
  font-size: 0.75em;
}

h5 {
  font-size: 0.6225em;
}

h6 {
  font-size: 0.5em;
}

.main { 
  max-width: 100%;
  margin: 0 auto;
}

.main-header {
  font-size: var(--font-size-bigger);
  max-width: 100%;
  margin: 0 auto;
  padding: 1em 0em;
  border-bottom: 1px solid var(--lightest-color);
}

.main-nav__left {
  display: flex;
}

.main-nav__right {
  margin-left: auto;
}

.main-nav__link {
  color: var(--dark-color);
  text-decoration: none;
  font-weight: bold;
}

.album-list {
  list-style: none; 
  padding-left: 0;
  margin: 0;
  gap: 0.5em;
}

.album__imagewrapper {
  display: block;
  width: 100%;
  position: relative;
  padding-bottom: 75%;
  overflow: hidden;
  margin: 1em 0;
  border-radius: 0.5em;
}

.album__image {
  max-width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  display: block;
  margin-bottom: 1em;
}

.gallery-list {
  list-style: none; 
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5em;
}

.gallery-list__item {
  padding-top: 100%;
  height: 0;
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.gallery-list__image {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: auto;
}

.gallery-list__image.portrait {
  width: 100%;
  height: auto;
}

.image-photo {
  max-width: 100%;
  height: auto;
}

.breadcrumbs {
  display: inline;
  list-style: none; 
  padding-left: 0;
  margin: 0;
}

.breadcrumbs__item {
  display: inline;
}

.breadcrumbs__item+.breadcrumbs__item:before {
  content: "\00a0/\00a0";
}

.entry__header {
  margin-top: 1em;
  margin-bottom: 1em;
}

.entry__title {
  margin-top: 0;
  margin-bottom: 0;
}

.entry__item {
  font-size: var(--font-size-smaller);
}

.entry__published {
  color: var(--lighter-color);
}

.entry__imagenav {
  display: flex;
  margin: 1em 0 1em 0;
}

.entry__prevctrl {
  justify-content: flex-start;
}

.entry__downctrl {
  justify-content: center;
}

.entry__nextctrl {
  justify-content: flex-end;
}

.entry_imagenavctrl {
  flex: 1 0 auto;
  display: flex;
}

.entry__subscribe {
  display: flex;
  align-items: center;
  gap: 0.25em;
}

.entry__date {
  display: flex;
  align-items: center;
  gap: 0.25em;
}

.entry__infoline {
  display: flex;
  gap: 0.5em;
}

.main-footer {
  font-size: var(--font-size-smaller);
  max-width: 100%;
  margin: 1em auto 0 auto;
  padding: 1em 0em;
  border-top: 1px solid var(--lightest-color);
}

.exif {
  margin-top: 1em;
  font-size: var(--font-size-smaller);
}

.exif__data {
  display: flex;
  align-items: center;
  gap: 0.25em;
}

.album-nav {
  font-size: var(--font-size-smaller);
  display: flex;
  align-items: center;
  gap: 0.25em;;
}
