* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  background-color: #f8f8ff;
}

.container {
  display: flex;
  flex-direction: column;
  background-color: #fffffe;
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px 50px 0 50px;
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
}
.container section {
  display: flex;
  padding: 10px 0;
  border-bottom: 1px dashed #acabe7;
}
.container section main {
  flex: 0 1 auto;
  padding-right: 10px;
  border-right: 1px dashed #acabe7;
}
.container section aside {
  flex: 1 0 300px;
  padding-left: 10px;
}

.container > footer {
  display: flex;
  gap: 20px;
  padding: 10px 0;
  flex: 0 0 110px;
  justify-content: center;
}
.container > footer section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 1 250px;
  border: none;
}
.container > footer section:nth-child(2) {
  flex: 0 0 90px;
}
.container > footer section img {
  height: 90px;
}
.container > footer section h6 {
  font-size: 1em;
  color: #efc845;
}
.container > footer section a, .container > footer section p, .container > footer section address {
  font-style: normal;
  font-size: 0.8em;
}

.container > header {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 auto;
}
.container > header img {
  height: 90px;
  margin-bottom: 10px;
}
.container > header nav {
  flex: 0 0 39px;
  width: 100%;
  border-width: 1px 0 1px 0;
  border-style: solid;
  border-color: #efc845;
}
.container > header nav ul {
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  justify-content: space-between;
  width: 90%;
  list-style: none;
  height: 100%;
}
.container > header nav ul li {
  display: flex;
  flex: 0 1 auto;
  align-items: flex-end;
}
.container > header nav ul li a {
  flex: 1 1 auto;
  text-decoration: none;
  color: #444285;
  text-align: center;
  padding-bottom: 8px;
}
.container > header nav ul li a:hover {
  color: #acabe7;
}

main article {
  flex: 0 0 500px;
}

main .sideways {
  flex: 0 0 500px;
  display: flex;
}
main .sideways article {
  flex: 1 1 100%;
}
main .sideways article h2 {
  font-size: 1.1em;
}
main .sideways article:not(:last-child) {
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px dashed #acabe7;
}

aside article header {
  display: flex;
  align-items: flex-end;
}
aside article header h4 {
  flex: 0 0 50%;
  font-family: "Roboto";
  display: inline-block;
}
aside article img {
  margin-top: 0.33em;
}

article h1 {
  margin: 7px 0;
}
article h2 {
  margin: 5px 0;
}
article img {
  width: 100%;
}

main > article, aside > article, main > .sideways {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #acabe7;
}

main > article:last-child, aside > article:last-child {
  border: none;
}

h1, h2, h3, h4, h5, h6 {
  color: black;
  font-family: "Roboto Serif";
}
h1 span, h2 span, h3 span, h4 span, h5 span, h6 span {
  color: #444285;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.5em;
}

h3 {
  margin: 1em 0 0.25em 0;
  max-width: 500px;
}

h5 {
  font-size: 0.9em;
  font-weight: normal;
  line-height: 1.35em;
  max-width: 500px;
}
h1 + h5 {
  font-size: 1.1em;
  line-height: 1.45em;
}

hr {
  border: none;
  border-bottom: 1px dashed #acabe7;
  margin: 10px 0;
}

.byline {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.byline address {
  font-size: 0.8em;
  font-family: "Roboto Serif";
}

time {
  flex: 1 1 50%;
  font-size: 0.7em;
  color: #acabe7;
  display: inline-block;
  text-align: right;
}

article > p {
  line-height: 1.5em;
  margin-bottom: 0.5em;
  max-width: 500px;
}

figure {
  padding-bottom: 3px;
}
figure figcaption {
  font-size: 0.75em;
  font-style: italic;
  color: #856d21;
  padding-left: 3px;
}

.floating-img {
  position: relative;
  margin: 10px;
  max-width: 250px;
}
.floating-img.floating-img-left {
  float: left;
}
.floating-img.floating-img-right {
  float: right;
}

a {
  text-decoration: none;
  color: inherit;
}

aside > h2 {
  background: url(img/tl_paere.svg) top left/11px no-repeat;
  font-size: 1.25em;
  padding-left: 18px;
  margin-bottom: 10px;
  color: #efc845;
}

footer > section > svg > .a {
  transform-origin: center center;
  -webkit-animation: 4s linear 0s infinite rotating;
          animation: 4s linear 0s infinite rotating;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

footer > section > svg:hover > .a {
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

footer > section > svg > .bulb {
  transform-origin: center center;
  -webkit-animation: 4s linear 0s infinite pulsating;
          animation: 4s linear 0s infinite pulsating;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

footer > section > svg:hover > .bulb {
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

@-webkit-keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes pulsating {
  0% {
    transform: scale(100%);
  }
  25% {
    transform: scale(115%);
  }
  50% {
    transform: scale(100%);
  }
  75% {
    transform: scale(85%);
  }
  100% {
    transform: scale(100%);
  }
}
@keyframes pulsating {
  0% {
    transform: scale(100%);
  }
  25% {
    transform: scale(115%);
  }
  50% {
    transform: scale(100%);
  }
  75% {
    transform: scale(85%);
  }
  100% {
    transform: scale(100%);
  }
}/*# sourceMappingURL=style.css.map */