#p_CSS {
    width: 85px;
    height: 20px;
    background-image: url('http://d3vj7y74cpj7c1.cloudfront.net/hello_world.png');
}
.mainContainer {
    padding-top: 65px;
    padding-left: 65px;
    padding-right: 65px;
}

.jumbotron {
    padding: 10px
}

.btn-custom-light {
    background-color: #d0d0d0;
}

#headerImage {
    z-index: -5;
}
.getTheGamePositioner {
    position: absolute;
    left: 45%;
    top: 200px;
}
.fileForDownloadListItem {
    padding-top: 10px;
    padding-bottom: 10px;
}
.fileForDownload {
    font-weight: bold;
    font-size: 15px;
}
#cookie-bar {
    z-index: 5;
}

/* this  is for the footer, see https://css-tricks.com/couple-takes-sticky-footer/ */
.mainContentContainer {
    min-height: calc(100vh - 70px);
}

.footer{
    min-height: 50px
}

@media (orientation: portrait) {
    .desktopImage {
        display: none;
    }
}
@media (orientation: landscape) {
    .mobileImage {
        display: none;
    }
}
@keyframes shake {
    0% { transform: translateX(0); }
    20% { transform: translateX(-2px); }
    40% { transform: translateX(2px); }
    60% { transform: translateX(-2px); }
    80% { transform: translateX(2px); }
    100% { transform: translateX(0); }
}

.shake {
    animation: shake 0.5s infinite ease-in-out;
}