﻿::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: black;
}

::-webkit-scrollbar-thumb {
    background: #8f8272;
}

body {
    background-color: black;
    overflow-x: hidden;
    font-family: "Roboto", sans-serif;
}


.wrapper {
    width: 98%;
    height: 100%;
    box-sizing: border-box;
    margin:0 auto;
    margin-bottom:50px;
}

.mt-5{
    margin-top:5px!important;
}
.mb-10 {
    margin-bottom: 10px !important;
}

/***Footer *****/

.footer {
    position: fixed;
    bottom: 0;
    width: 98%;
    height: 50px;
    background-color: black;
    z-index: 99;
    text-align: center;
    border-top: 1px solid #8f8272;
    margin: 0 auto;

    -webkit-box-shadow: 0px -8px 24px 5px rgba(0,0,0,0.91);
    -moz-box-shadow: 0px -8px 24px 5px rgba(0,0,0,0.91);
    box-shadow: 0px -8px 24px 5px rgba(0,0,0,0.91);
}


.footer p{
    font-size:16px;
    margin-top:15px;
    color:white;
}

