/* BASIC */
body{
    background-color: #edeef0;
}
hr{
    width: 90%; 
    height: 1px; 
    border-width: 1px; 
    background-color: darkgrey; 
    margin-top: -2px;
}

/* RESPONSIVE */
#container{
    width: 100%;
    height: 100%;
    text-align: center;
}
#leftColumn{
    height: 100%;
    width: 330px;
    margin: 0 auto;
    display: inline-block;
    vertical-align: top;
}
#middleColumn{
    width: 520px;
    height: 100%;
    margin: 0 auto;
    margin-left: 20px;
    margin-right: 20px;
    display: inline-block;
    vertical-align: top;
}
#rightColumn{
    width: 390px;
    height: 100%;
    margin: 0 auto;
    display: inline-block;
    vertical-align: top;
}

/* HEADINGS */
.heading{
    font-family: 'Allan';
    color: rgb(226, 200, 50);
    font-size: 28px;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

/* LOADER */
#overlay {
    height: 100%;
    width: 100%;
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.475);
}
#loader {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border: 16px solid black;
    border-radius: 50%;
    border-top: 16px solid rgb(226, 200, 50);
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
} 
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* NAVBAR */
#collapsibleNavbar a{
    color: whitesmoke;
    font-family: 'Allan';
    font-size: 20px;
}
#collapsibleNavbar a:hover{
    color: rgb(226, 200, 50);
}
#navTitle{
    margin-right: 6%;
    font-family: 'Allan';
    font-size: 23px;
}
#navTitle:hover{
    color: rgb(226, 200, 50);
}
#collapsibleNavbar li{
    margin-right: 10%;
    white-space: nowrap;
}