/*All pages*/

div{
  height: 400px;
  width: 800px;
  background: #B22222;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}


body {
  font-family: 'Libre Baskerville', serif;
  background: #B22222;
}

h1 {
  color: white;
}

p {
  color: white;
  text-align: center;
}

a {
  color: white
}

a:hover {
  color: lightcoral
}


#page-container {
  position: relative;
  min-height: 100vh;
}

#content-wrap {
  padding-bottom: 2.5rem;    /* Footer height */
}

#footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2.5rem;            /* Footer height */
  text-align: center;
}
