:root {
  --thumbnail-size: 120px;
}

a{
  color: #eee;
}

body {
  background-color: #333;
  font-family: sans-serif;
  color: #ccc;
  font-weight: 100;
}

main {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  -moz-box-shadow:    inset 0 0 100px #000;
  -webkit-box-shadow: inset 0 0 100px #000;
  box-shadow:         inset 0 0 100px #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card{
  width: 90vw;
  height: 90vw;
  max-width: 800px;
  max-height: 800px;
  margin: 5%;
	display:inline-block;
	cursor:pointer;
	position:relative;
}
.card .img, .card-img{
  line-height: 3em;
  width: 100%;
  height: 100%;
	display:inline-block;
    background-position: center;
    background-size: 100% auto;
    background-repeat: no-repeat;
    box-shadow: 3px 3px 3px black;
}

#soon{
    text-align: center;
    bottom: 1em;
    position: fixed;
    width: 100vw;
}

@media screen and (orientation:landscape) {
  main {
    background-size: auto 90%;
  }
  .card{
    width: 90vh;
    height: 90vh;
  }
  .card .img, .card-img{
  background-size: auto 100%;
  }
  aside{
    position: fixed;
    left: 0;
    top: 0;
    width:  calc(20vw + 20px);
    height: 100vh;
    flex-direction: column;
    margin: 0 2em;
  }
  aside .img{
    width: calc(20vh);
    height: calc(20vh);
  }
}
