a#skiptocontent {
  padding: 7px;
  position: absolute;
  left: 50%;
  transform: translateY(-150px);
  color: white;
  background: black;
  z-index: 100;
}
a#skiptocontent:focus {
  transform: translateY(0%);
}

*,
*:before,
*:after {
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  background-color: #fff;
  position: relative;
  margin: 0;
  min-height: 100vh;
}

a {
  color: #1952a7;
}

p {
  font-size: 14px;
}

h1 {
  margin-bottom: 0;
  font-size: 24px;
}

h2 {
  margin-bottom: 0;
  font-size: 20px;
}

.icon {
  fill: #1952a7;
}

nav {
  position: relative;
  z-index: 2;
  text-align: center;
}
@media (min-width: 768px) {
  nav {
    float: left;
    text-align: left;
    margin-left: 10px;
  }
}
nav a {
  font-size: 0;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  nav a {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    font-size: 20px;
  }
}
nav a svg {
  height: 45px;
  width: 45px;
  margin-right: 10px;
}
nav a:hover {
  color: #f78000;
}
nav a:hover .icon {
  fill: #f78000;
}

main {
  position: relative;
  z-index: 1;
  line-height: 1.4;
  padding: 0 10px 20px;
}
@media (min-width: 768px) {
  main {
    max-width: 900px;
    padding-left: 200px;
  }
}

aside.smoke {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: -50px;
  height: 100%;
  width: 200px;
  background: linear-gradient(0deg, rgba(255, 0, 0, 0.6) 0%, rgba(255, 106, 0, 0.6) 12%, rgba(27, 237, 12, 0.6) 25%, rgba(20, 111, 218, 0.6) 37%, rgba(93, 21, 237, 0.6) 50%, rgba(20, 111, 218, 0.6) 62%, rgba(27, 237, 12, 0.6) 75%, rgba(255, 106, 0, 0.6) 87%, rgba(251, 0, 0, 0.6) 100%);
  animation: slide-up-color linear 15s infinite;
}
@media (min-width: 768px) {
  aside.smoke {
    left: 0;
  }
}
aside.smoke:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: linear-gradient(180deg, white 10%, rgba(255, 255, 255, 0) 100%);
}
aside.smoke:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url("/smoke_trans.png");
  background-repeat: repeat-y;
  background-position: top center;
  animation: slide-up linear 20s infinite;
}

@keyframes slide-up {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 -992px;
  }
}
@keyframes slide-up-color {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 0 -100vh;
  }
  100% {
    background-position: 0 0;
  }
}