*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
::selection {
  background: #466959;
  color: white;
}
body{
  font-family:  Helvetica, Arial, sans-serif;
  font-weight:  bold;
  font-style:   normal;
  font-stretch: normal;
  -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
  line-height: 1.2;
}
a{
  text-decoration: none;
  color: #466959;
}
a:hover{
  color: black;
}
.wrapper{
  width: 80%;
  margin: 0 auto 0;
  max-width: 1000px;
}
.wrapper > *{
  margin-top: 2em;
}
svg{
  width: 38%;
  max-width: 180px;
}
img{
  width: 100%;
}
ul{
  display: inline-block;
  list-style-type: none;
}
ul:first-of-type{
  line-height: 1.4;
}
ul:nth-child(even){
  float: right;
  text-align: right;
}
.external li{
  cursor: hand;
  cursor: pointer;
}
.external li::after{
  transition: margin-left 100ms ease-in-out;
  cursor: pointer;
  content: "→";
  margin-left: 10px;
}
.external li:hover:after{
  margin-left: 20px;
}
.cover{
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, .8);
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-backdrop-filter: blur(4px);
}
.show{
  visibility: visible;
  -webkit-animation: fadeIn 100ms;
  animation: fadeIn 100ms
}
.news{
  display: inline-block;
  margin-left: 40px;
  min-width: 100px;
  max-width: 160px;
}
.footer{
  margin-top: 3em;
  font-size: 1em;
  color: #c8c8c8;
  cursor: hand;
  cursor: pointer;
  display: block;
}
.footer:last-child{
  margin-top: .2em;
}
.popup{
  background-color: white;
  padding: 1em;
}
@-webkit-keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}
@media screen and (max-width:800px) {
  body{
    font-size: .8em;
  }
  .news{
    margin-left: 0;
  }
  .wrapper{
    width: 95%;
  }
  ul{
    display: block;
  }
}
