/* 
norris.css the CSS sheet for the sources page, used to create this website.
Copyright 2019 Fabian Hoeltke
*/ 


body {
    font-family: Lato, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: -20px 0px 0px 0px;
    padding-left: 12em;
    padding-right: 12em;
    line-height: 1.5;
}

a {
  color: #555;
  text-decoration: none;
}


h2 {
    margin-top: 1em;
    padding-top: 1em;
    color: #333;
    padding-bottom: 0.5em;
    border-bottom: 2px solid rgb(204, 225, 245);
}

.jokeButton {
    margin-top: 30px;
    margin-bottom: 50px;
}

.jokeButton a{
  margin-bottom: 1em;
  padding: 1em 1.5em 1em 1.5em;
  border: 1px solid #ddd;
  border-radius: 10px;
  transition: box-shadow 0.3s ease-in-out;
  width: 200px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.jokeButton a:hover {
  box-shadow: 0px 5px 10px rgb(204, 225, 245);
}

.joke {
  /*font-size: 20px;*/
  text-align: center;
}


.goBack {
  margin-top: 30px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  
}

.goBack a{
  margin-bottom: 1em;
  padding: 1em 1.5em 1em 1.5em;
  border: 1px solid #ddd;
  border-radius: 10px;
  transition: box-shadow 0.3s ease-in-out;
  position: fixed;
  bottom: 60px;
  
}

.goBack a:hover {
  box-shadow: 0px 5px 10px rgb(204, 225, 245);
}


.chuck {
  max-height: 300px;
  bottom: 0px;
  position: fixed;
  left: 20px;
}

footer {
    background-color: white;
    margin-top: 50px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    color: #555;
    text-align: center;
}

