body {
    font-family: 'Doppio One', sans-serif;
    padding: 0px;
    margin: 0px;    
}

/**    basic navbar    */
nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 50px;
    width: 100%;
    border-bottom: 3px solid #fff;
    background-color: crimson;
    padding: 5px;
    color: #fff;
    font-weight: bolder;
    text-decoration: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;     
}

nav a {
    color: #fff;
    text-decoration: none;
}

/**    logo / brand-name section    */
#brand-name {
    font-size: 1.8em;
    margin-top: 10px;
}

#side-nav-icon {
    padding: 2px;
    float: right;
    margin-right: 20px;
    color: #fff;
    font-weight: bolder;
    -ms-transform: rotate(90deg); /* IE 9 */
    -webkit-transform: rotate(90deg); /* Chrome, Safari, Opera */
    transform: rotate(90deg);  
    text-align: center;  
}

#side-nav-icon:hover {
    cursor: pointer;
}

#side-nav {
    position: fixed;
    top:0;
    right: 0;
    margin-right: -10px;
    height: 100vh;
    background-color: #fff;
    margin-right: -150px;

}

#side-nav ol {
    list-style: none;
    height: 100vh;
    width: 100px;
    margin-top: -2px;
    border-left: 3px solid crimson;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;        
}

#side-nav ol li {
    color: crimson;
    padding:20px;
    margin-left: -40px;
    border-bottom: 1px solid crimson;
    background-color: #fff;
    text-align: center;  
}

#side-nav ol li:hover {
    cursor: pointer;
    background-color: gainsboro;
}

#side-nav-close-icon {
    padding: 2px;
    font-weight: bolder;
    text-align: center;  
}

#side-nav-close-icon:hover {
    cursor: pointer;
    color: crimson;
}

section {
    margin-top: 80px;
}

.container {
    width: 80%;
    border-radius: 8px;
    padding: 5px 0px 15px 0px;
}

h1, h2, h3, h4, h5, h6 {
    color: crimson;
    text-decoration: underline;
}

.centered-text {
    text-align: center;
    padding: 0;
}

.centered {
    display: block;
    margin: 0 auto;
}

.panel {
    margin-top: 10px;
    border-radius: 8px;
    border: 3px solid crimson;
    background-color: crimson;
}

.panel-title {
    color: #fff;
    text-decoration: none;
    padding: 0px 10px 0px 10px;
    text-transform: uppercase;
}

.panel-body {
    padding: 5px 25px 10px 25px;
    background-color: #fff;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    color: crimson;
}

.medium {
    font-size: 0.75em;
    width: 70%;
}

.mega {
    font-size: 1em;
    width: 80%;
}

.ruled {
    margin-top: 10px;
    border: 0; 
    height: 1.4px; 
    background-image: linear-gradient(to right, rgba(220, 20, 60, 0), rgba(220, 20, 60, 0.75), rgba(0, 0, 0, 0));    
}

button {
    margin: 10px;
    display: inline-block;
}

.primary {
    color: #fff;
    background-color: crimson;
    font-size: 1em;
    font-weight: bolder;
    border: 3px solid crimson;
    border-radius:  8px;
    height: 50px;
}


.primary:hover {
    background-color: cadetblue;
}

.primary:active {
    color: #fff;
    border: 3px solid crimson;
    color: crimson;
    background-color: #eeeeee;
}

.secondary {
    color: crimson;
    font-size: 1em;
    font-weight: bolder;
    border: 3px solid crimson;
    border-radius:  8px;
    height: 50px;    
}

.secondary:hover {
    background-color: burlywood;
}

.secondary:active {
    color: #fff;
    border: 3px solid crimson;
    color: crimson;
    background-color: #eeeeee;
}

/**    basic footer    */
footer {
    margin-top: 100px;
    bottom: 0; 
    width: 100%; 
    height: 100px; 
    background-color: crimson;
}
