body {
    background: #773cdc url('../../images/norris-bg.svg');
    color: #f2f2f2;
}

h1 {
    font-size: 30px;
    text-shadow: 0 0 3px #FF0000, 0 0 5px #0000FF;
}

label {
    letter-spacing: 3px;
}

.container {
    margin: 10% auto;
}

.error {
    color: #66ff66;
    list-style-type: none;
}

.get-jokes {
    color: #f2f2f2;
}

img {
    max-width: 150px;
    display: block;
    margin: auto;
}

.image-div {
    -webkit-transform: scale(0);
    transform: scale(0);
    transition: transform 0.5s ease-in;
    height: 0;
    overflow: hidden;
}

.image-div.shown {
    margin: 0 auto 50px;
    -webkit-transform: scale(5.3);
    transform: scale(1.3);
    height: auto;
}