html {
    font-size: 16px;
}
body {
    background: #4e8abe;
    font-family: "Avant Garde", Avantgarde, "Century Gothic", CenturyGothic, "AppleGothic", sans-serif;
    background-image: url(../images/lake-mi.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-attach: fixed;
    animation: animate-bg 80s infinite linear;
}

@keyframes animate-bg {
    from { background-size: 100%; background-position: 0% 0%; }
    50% { background-size: 130%; background-position: 0% 30% }
    to { background-size: 100%; background-position: 0% 0%; }
}
  

#main {
    margin: 0 auto;
	width: 100%;
}

h1 {
    font-size: 72px;
    padding: 20px;
    text-align: center;
    text-transform: uppercase;
    text-rendering: optimizeLegibility;
}

.bottom_right_box {
  position: absolute;
  bottom: 2%;
  right: 2%;
  font-size: 2em;
  color: #fff;
}

#jokeInfo {
    border: 1px solid black;
    display: inline-block;
    padding: 20px;
    background: #e8e8e8;
    text-align: center;
    max-width: 60%;
    box-shadow: 5px 10px 5px #355e81;
}

#jokeInfo #question {
    font-size: 18px;
    font-weight: 700;
 
}

.btn-primary {
    background: #000;
    color: #fff;
    border-radius: 0%;
    border: none;
    box-shadow: 5px 10px 5px #355e81;
}
