@-ms-keyframes spin {
    from { -ms-transform: rotate(0deg); }
    to { -ms-transform: rotate(360deg); }
}
@-moz-keyframes spin {
    from { -moz-transform: rotate(0deg); }
    to { -moz-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}

body {
    background-color: #202020;
}

p {
    text-align:center;
}

.action, .cat-pic {
    display: block;
}

.loading > img {
    display: block;
    margin: auto;
    width: 50%;
    -webkit-animation-name: spin;
    -webkit-animation-duration: 1000ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: spin;
    -moz-animation-duration: 1000ms;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    animation-name: spin;
    animation-duration: 1000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.loading > img:last-child {
    top: -225px;
    position: relative;
}

.action {
    background-color: blue;
    border-width: 0;
    clear: both;
    color: white;
    cursor: pointer;
    font-size: 24px;
    margin: 20px auto;
    padding: 20px 32px;
    vertical-align: top;
}

.cat-pic {
    clear: both;
    margin: 0 auto;
    max-height: 400px;
}

.hide {
    display: none;
}

.issues-container {
    padding: 3em 0;
    text-align: center;
    width: 100%;
}

.issues-link {
    color: #FFF;
}

@media screen and (max-width: 768px)  {
    .cat-pic {
        height: auto;
        width: 100%;
    }
}