#showcase *{
    margin: 0;
    padding: 0;
    font-size: 100%;
}
/*======================================*/
#showcase {
    background-color: rgba(0,0,0,0.8);
    width: 100vw; height: 100vh;
    display: block;
    position: fixed;
    top:0;
    z-index: 5000;
    animation-name: fadeIn;
    animation-duration: 0.5s;
}
#showcase .container {
    width: 60vw;
    max-width: 700px;
    margin: 150px auto;
    position: relative;
}

/*======================================*/
#showcase img {
    width: 100%;
    height: auto;
}
#showcase .container .line{
    width: 100%;
    margin: 1em auto;
    color: #EEE;

}
#showcase a {
    display: inline-block;
    width: 3em;
    height: 1.8em;
    border: solid 1px #EEE;
    padding: 0.2em auto 0.6em auto;
    text-align: center;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
