html, body {
    margin: 0;
    height: 100%;
}

body {
    background-color: #424242;
    padding: 10px;
    animation: fadeInAnimation ease .75s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

main {
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 15px;
    margin: auto;
    box-shadow: 1px 1px 10px black;
}

h4 {
    font-family: 'Courier New', Courier, monospace;
    font-weight: 500;
}

h5 {
    font-family: 'Courier New', Courier, monospace;
    font-weight: 500;
}

p {
    font-family: 'Courier New', Courier, monospace;
    color:black;
    margin-top: 25px;
    line-height: 2;
}

a {
    font-family: 'Courier New', Courier, monospace;
    color:black;
}

a:hover{
    color: #ec971f;
    transform: scale(1.05);
}

img {
    box-shadow: 1px 1px 10px black;
}

pre {
    word-break: break-all;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

li {
    line-height: 1.75;
}

.current {
    border-bottom: 1px solid orange;
    color: white;
}

.current:hover a:hover {
    transform: none;
    color:black;
}

.navbar {
    box-shadow: 1px 1px 5px black;
}

.navbar-btn {
    margin-left: 10px;
}

.navbar-btn .dropdown-toggle {
    margin-left: 0px;
}

.thumbnail {
    box-shadow: 1px 1px 15px black;
}

.well {
    box-shadow: 1px 1px 10px black;
}

.navbar-brand img {
    width: 35px;
    height: 35px;
    margin-top: -7px;
    margin-left: 0px;
}

.navbar-brand:hover{
    transform: none;
}

/* Makes 'My Projects' button readable when dropdown is clicked */
.nav .open > a, .nav .open > a:focus, .nav .open > a:hover {
    background-color: #ec971f;
    border-color: orangered;
}

/* ***************************** */

/* Fade in and out after page clicks */
#fader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    pointer-events: none;
    background: black;
    animation-duration: 200ms;
    animation-timing-function: ease-in-out;
}

@keyframes fade-out {
    from { opacity: 1 }
      to { opacity: 0 }
}

@keyframes fade-in {
    from { opacity: 0 }
      to { opacity: 1 }
}

#fader.fade-out {
    opacity: 0;
    animation-name: fade-out;
}

#fader.fade-in {
    opacity: 1;
    animation-name: fade-in;
}

/* ********************************** */