@font-face {
    font-family: Cursive;
    src: url(../fonts/cedarville-cursive.ttf);
}

* {
    box-sizing: border-box;
}

select,
button {
    height: 22px;
    border-radius: 4px;
    box-shadow: none;
    background-color: #aef;
}

.pstack {
    min-width: 150px;
    /*width: 40%;*/
    background-color: #efefef;
    border: solid #666 1px;
    border: solid rgba(40, 40, 40, 0.5) 1px;
    display: block;
    text-align: center;
    padding-top: 8px;
    position: absolute;
    top: 20px;
    left: 20px;
    transition: transform 0.6s;
    transform-origin: center center;
    margin-top: 80px;
    margin-left: 25px;
    box-shadow: 3px 3px 8px #888;
    cursor: pointer;
}

.pstack .content {
    width: 100%;
}

.pstack .content img {
    width: 98%;
    background-color: #666;
}

.pstack .content .caption {
    text-align: center;
    padding: 8px 16px;
    margin: 10px;
    font-family: Cursive;
    font-style: italic;
    font-size: .75em;
}

.slideout {
    animation-duration: 600ms;
    animation-name: slideout;
    animation-iteration-count: 2;
    animation-direction: alternate;
}

@keyframes slideout {
    from {
        left: 20px;
    }
    to {
        left: 300px;
    }
}