*, *::after, *::before {
  box-sizing:border-box;
}
@media (prefers-reduced-motion:no-preference) {
  :root {
    scroll-behavior:smooth;
  }
}
body {
  background-color:rgb(255, 255, 255);
  /*box-shadow:inset 0 0 5rem rgba(0, 0, 0, .5);*/
  color:rgb(33, 37, 41);
  font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size:1rem;
  font-weight:400;
  height:100%;
  line-height:1.5;
  margin:0;
  overflow:hidden;
  text-align:left;
  /*text-shadow:0 .05rem .1rem rgba(0, 0, 0, .5);*/
  -webkit-text-size-adjust: 100%;
}
.container {
  display:flex;
  flex-direction:column;
  height:calc(100%);
  margin-left:auto;
  margin-right:auto;
  max-width: 42em;
  padding:1rem;
  width:100%;
}
header {
  display:flex;
  margin-bottom:auto;
  margin-top:3rem;
}
header nav {
  margin-left:auto;
}
header nav a {
  color:rgb(24, 24, 24);
  font-family:"Roboto Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size:1.5rem;
  font-weight:300;
  padding:0;
  text-decoration:none;
}

html {
  height:100%;
}
footer {
  color:rgb(24, 24, 24);
  font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size:90%;
  margin-bottom:2rem;
  margin-top:auto;
  text-align:center;
}
.hr {
  bottom:0;
  display:flex;
  height:.35rem;
  left:0;
  position:absolute;
  width:100%;
}
.hr > * {
  flex-basis:0;
  flex-grow:1;
}
.hr > :nth-child(1) {
  background-image:linear-gradient(to right, rgb(4, 41, 64), rgb(0, 92, 83));
}
.hr > :nth-child(2) {
  background-image:linear-gradient(to right, rgb(0, 92, 83), rgb(159, 193, 49));
}
.hr > :nth-child(3) {
  background-image:linear-gradient(to right, rgb(159, 193, 49), rgb(219, 242, 39));
}
.hr > :nth-child(4) {
  background-image:linear-gradient(to right, rgb(219, 242, 39), rgb(4, 41, 64));
}
main {
  display:flex;
  padding-left:1rem;
  padding-right:1rem;
}
main > img {
  margin:auto;
}

@media only screen and (max-width:768px) {
  main > img {
    height:auto;
    width:90%;
  }
}
@media only screen and (min-width:768px) {
  main > img {
    height:auto;
    width:627px;
  }
}