
html {
  position: relative;
  min-height: 100%;
}
body {
    padding-top: 115px;
    margin-bottom: 60px;
    font-family: Georgia, serif;
    font-size: 1.70rem; /* 1rem is the root-font (usually 16px), so this makes it ~18px */
    line-height: 1.4;    /* optional: adjust line-height for readability */
    background-color: #fbedf6;

}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    /* Set the fixed height of the footer here */
    height: 60px;
    background-color: #fbedf6;
}
.footer > .container {
    margin-top: 20px;
}
.page-header {
    padding-top: 30px;
    margin-top: 0px;
}

.list-group-item:hover {
    text-decoration: none;
    background-color: #ffecf3;
}

.jumbotron {
    background-color: #e5ddec;
}


/*NAV-BAR RELATED*/

.navbar {
    min-height: 75px;
    font-size: 1.3em;
    font-family: "Courier New", Courier, monospace;
}

.navbar-inverse {
    background-image: linear-gradient(to bottom,#3F3F3F 0,#3F3F3F 100%);
    border-color: #3F3F3F;
    color: #eeeeee;
}

.navbar-inverse .navbar-nav>li>a {
    color: #eeeeee;
}

.navbar-brand {
    height: 75px;
}
.navbar-nav>li>a {
    line-height: 50px;
}


@media print {
    body {
        padding-top: 0px;
        margin-bottom: 0px;
    }
    
    .page-header {
        padding-top: 0px;
    }
}

/* unvisited link */
a:link {
    color: rgb(98, 25, 121);
  }
  
  /* visited link */
  a:visited {
    color: rgb(191, 32, 117);
  }
  
  /* mouse over link */
  a:hover {
    color: deeppink;
  }
  
  /* selected link */
  a:active {
    color: deeppink;
  }