body{
    margin: 0%;
    padding: 0%;
    font-family: Cascadia Code;
}
* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}
.footer{
    padding: 20px;
    background-color: orange;
}
.footer .social{
    text-align: center;
    padding: 25px;
    color: rgb(138, 138, 138);
}
.footer .social a {
    font-size: 24px;
    color: inherit;
    border: 1px solid;
    width: 40px;
    height: 40px;
    line-height: 38px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    margin: 0 8px;
    opacity: 0.75;
}
.footer .social a:hover {
	background-color: black;
}
.footer ul {
    margin-top: 0%;
    padding: 0%;
    list-style: none;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0%;
    text-align: center;
}
.footer ul li a {
    color: inherit;
    text-decoration: none;
    opacity: 0.8;
}
.footer ul li{
    display: inline-block;
    padding: 0 15px;
}
.footer ul li a:hover {
    opacity: 1;
}
.footer .copyright {
    margin-top: 15px;
    text-align: center;
    font-size: 13px;
}
::-webkit-scrollbar{
    width: 10px;
}
::-webkit-scrollbar-track{
    background: #4E4E4C;
}
::-webkit-scrollbar-thumb{
    background: orange;;
}
::-webkit-scrollbar-thumb:hover{
    background: #ff8800;
}