body {
    background-color: #DCA1A1;
    color: #3c2a2a;
}

h1 {
    font-size: large;
}
h2 {
    font-size: medium;
    border-bottom: 1px solid #3c2a2a;
    text-indent: 5px;
    margin-bottom: 0;
}

ul.link {
    width: 100%;
    padding: 0;
    list-style-type: none;
    font-size: medium;
    margin-top: 2px;
}
ul.link li {
    margin: 2px 0px;
}
ul.link li.lin {
    display: block;
    color: #3c2a2a;
    border-left: 4px solid #3c2a2a;
    border-bottom: 1px solid #3c2a2a;
    padding: 5px 4px;
    text-decoration: none;
    margin-bottom: 0;
    transition: all .4s ease-in-out; 
}
ul.link li.lin:hover {
    color: #543c3c;
    background-color: #e4b4b3;
    border-left-color: #543c3c;
    border-bottom-color: #543c3c;
    text-indent: 5px;
}
ul.link li a{
    display: block;
    color: #3c2a2a;
    border-left: 4px solid #3c2a2a;
    padding: 5px 4px;
    text-decoration: none;
    transition: all .4s ease-in-out; 
}
ul.link li a:hover {
    color: #543c3c;
    background-color: #e4b4b3;
    border-left-color: #543c3c;
    text-indent: 5px;
}
ul.link dd {
    margin: 0px 0px 1px 10px;
}
ul.link dd a{
    display: block;
    color: #3c2a2a;
    border-left: 4px solid #3c2a2a;
    padding: 2px 4px;
    text-decoration: none;
    transition: all .4s ease-in-out; 
}
ul.link dd a:hover {
    color: #543c3c;
    background-color: #e4b4b3;
    border-left-color: #543c3c;
    text-indent: 5px;
}


.sidenav {
  overflow-x: hidden;
  padding-top: 4px 0px;
  border-left: 4px solid #3c2a2a;
}
.sidenav a, .dropdown-btn {
  padding: 6px 2px 6px 10px;
  text-decoration: none;
  font-size: medium;
  color: #3c2a2a;
  display: block;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  outline: none;
}
.sidenav a {
    font-size: small;
}
#la a {
    font-size: medium;
}
.sidenav a:hover, .dropdown-btn:hover {
  color: #543c3c;
  background-color: #e4b4b3;
  text-indent: 4px;
  transition: all .4s ease-in-out; 
}
.active {
  background-color: #e4b4b3;
  color: #543c3c;
  text-indent: 4px;
}
.dropdown-container {
  display: none;
  background-color: #DCA1A1;
  padding-left: 8px;
}
.fa-caret-down {
  float: right;
  padding-right: 8px;
}

    /* Scroll Bar */
    /* width */
::-webkit-scrollbar {
	width: 0px;
}
    /* Track */
::-webkit-scrollbar-track {
	background: #DCA1A1;
}
    /* Handle */
::-webkit-scrollbar-thumb {
	background: #543c3c;
}
    /* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: #898383;
}