@charset "utf-8";
/* CSS Document */

#page-container {
  position: relative;
  min-height: 100vh;
}

#content-wrap {
  padding-bottom: 2.5rem;    /* Footer height */
}

#footer {
  position: absolute;
  bottom: 0;
  text-align:center;
  font-size:12px;  
  width: 100%;
  height: 2.5rem;            /* Footer height */
}



.button {
  background-color: #001934;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 2px;
  transition-duration: 0.4s;
}

.button1:hover {
  background-color: #ddd; /* Light grey */
  color: black;
}