body {
  /* background-color: #f5f5f5; */
  font-family: "Work Sans";
  width: 100%;
  max-width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  /* background-color: rgba(31, 141, 255, 0.05); */
}

nav#menu,
nav#menu > #menu-content,
#content {
  width: 100%;
  max-width: 100%;
  margin: auto;
  left: 0;
  right: 0;
}

/* menu: */

nav#menu {
  position: fixed;
  top: 0;
  z-index: 1;
  font-family: "Roboto";
  max-height: 64px;
  height: 64px;
}

nav#menu > #menu-content {
  display: flex;
  flex-direction: column;
  z-index: 1;
  height: 100%;
}

nav#menu ul {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

nav#menu a {
  text-decoration: none;
  color: #000;
}

nav#menu a#menu-logo {
  color: #fff;
  font-size: 1.8em;
  font-weight: 700;
  display: flex;
}

a#menu-logo > img {
  width: 250px;
  height: 100%;
}

a#menu-hamburger > img {
  fill: #fff;
  height: inherit;
}

nav#menu ul li > a {
  padding: 10px 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}

nav#menu li.active {
  font-weight: 500;
  transform: scale(1.1, 1);
}

nav#menu div#menu-top {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  z-index: 2;
  font-family: "Work Sans";
  background-color: rgb(31, 141, 255);
}

nav#menu div#menu-top > a {
  display: flex;
  align-items: center;
  padding: 12px;
}

nav#menu div#menu-top > a > img {
  padding-right: 5px;
}

nav#menu ul#menu-navigation {
  flex-direction: column;
  display: none;
  font-weight: 300;
  border-bottom: 3px solid rgb(31, 141, 255);
  color: #000;
  background-color: #fff;
}

@keyframes open-menu-navigation {
  from {
    transform: translateY(-150px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes close-menu-navigation {
  from {
    transform: translateY(0px);
    opacity: 1;
  }
  to {
    transform: translateY(-150px);
    opacity: 0;
  }
}

/* content: */

#content {
  position: relative;
  top: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  z-index: 0;
  width: 100%;
  text-align: justify;
}

/* article: */

article {
  margin: 0 15px 0;
  padding-top: 10px;
  max-width: 100%;
  font-family: "Segoe UI", "Work Sans";
}

h1,
h2,
h3 {
  text-align: left;
}

h1 {
  font-family: "Work Sans";
  margin: 0 0 0.4em;
  text-align: start;
  font-size: 2em;
}

h2 {
  /* font-weight: 400; */
  font-size: 1.5em;
  text-align: start;
  margin-top: 1.2em;
}

article p,
article ul {
  /* font-size: 1.02em;
    line-height: 1.4em; */

  font-size: 1.04em;
  line-height: 1.4em;
  color: rgb(46, 47, 62);
}

.blogpost .entrance {
  font-style: italic;
  font-size: 1.05em;
}

.blogpost h2 {
  font-family: "Segoe UI", "Work Sans";
}

article ul > li {
  text-align: left;
}

.article-image {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  padding: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.article-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.article-image i {
  font-size: 1.05em;
  margin: 5px 15px;
  color: rgb(46, 47, 62);
}

.article-header {
  position: relative;
  max-width: 100%;
  height: 50vw;
  margin-bottom: 50px;
  overflow: hidden;
  word-wrap: break-word;
  text-overflow: ellipsis;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  margin: 0;
}

.article-header::after {
  content: "";
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.article-header img {
  position: absolute;
  top: -20;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  object-fit: cover;
}

.article-header h1 {
  font-size: 2em;
  position: absolute;
  bottom: 0;
  font-family: "Segoe UI", "Work Sans";
  left: 15px;
  z-index: 1;
  color: #fff;
}

/* side-panel: */

aside {
  width: 100%;
}

#side-panel-info {
  display: none;
}

/* footer: */

footer {
  position: relative;
  top: 100px;
  max-width: 100%;
  background-color: rgb(31, 141, 255);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#footer-copyright {
  font-size: 0.65em;
  margin-bottom: 5px;
  text-align: center;
}

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

#footer-contact > img {
  height: 65px;
  border-radius: 100%;
  margin: 0 10px;
}

#footer-contact > div {
  display: flex;
  flex-direction: column;
}

#footer-contact > div > p {
  margin: 0;
  font-family: "Roboto";
}

#footer-contact > div > a {
  display: flex;
  text-decoration: none;
  color: #000;
  border: 1px #fff solid;
  border-radius: 40px;
  padding: 5px 10px;
  margin: 8px auto 0;
  background-color: #fff;
}

#footer-contact > div > a > img {
  margin-right: 5px;
}

a {
  color: rgb(31, 141, 255);
  text-decoration: none;
}

a:hover {
  color: rgb(31, 103, 170);
  /* font-weight: 500; */
  text-decoration: underline;
}
