/*body:not(:hover) * {*/
/*    outline: 1px solid red*/
/*}*/
body {
  padding: 0;
  font-family: sans-serif;
  color: #333;
  font-size: 18px;
  max-width: 780px;
  margin: 0 auto;
}
header {
  margin-bottom: 80px !important;
}

header > div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

a {
  color: #086bd3;
  font-weight: bold;
  text-decoration: none;
}
a.active,
a:hover,
a:focus {
  text-decoration: underline;
}

header a {
  display: inline-block;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  font-weight: normal;
  padding: 20px;
  line-height: 20px;
}

header a.active,
header a:hover,
header a:focus {
  text-decoration: underline;
  color: #000;
}

header > div > a#logo {
  font-weight: bold;
  height: 60px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
header > div > a:last-child {
  padding-right: 0;
}
.grow {
  flex-grow: 1;
}

header,
section,
footer {
  margin: 40px 0;
  padding: 0 20px;
}

h1,
h2 {
  line-height: 40px;
  font-size: 40px;
}

p {
  line-height: 30px;
  margin: 20px 0;
}

section h1,
section h2,
section .text {
  max-width: 660px;
  margin: 40px auto;
}

#content {
  min-height: 100vh;
}
footer {
  margin-top: 120px;
}
footer > div {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

footer > div > * {
  padding: 0;
}

.pictures {
  display: flex;
  gap: 40px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.pictures > a {
  display: block;
  height: 200px;
  width: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
  cursor: zoom-in;
  flex-grow: 1;
}

.fullscreen-image {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  max-width: 100vw;
  max-height: 100vh;
  margin: auto;
  animation: zoomIn 0.2s ease-out;
  cursor: zoom-out;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
}

.has-fullscreen-image > *:not(.fullscreen-image) {
  opacity: 0.2;
}

@media print {
  #authSwitcher {
    display: none;
  }
}

#authSwitcher {
  opacity: 0;
}
@media screen and (max-width: 1300px) {
  /*Inline at page bottom*/

  #authSwitcher {
    border: none;
    border-radius: 5px;
    display: block;
    width: 100%;
  }
}

@media screen and (min-width: 1300px) {
  /*Inline at page bottom*/

  #authSwitcher {
    border: 1px solid #dadada;
    border-radius: 5px;
    display: block;
    width: 230px;
    position: fixed;
    top: 20px;
    right: 20px;
  }
}
