@font-face {
    font-family: MuliLight-lg9VZ;
    src: url(../font/Muli/MuliLight-lg9VZ.ttf);
    font-weight: 200;
}

body, html{
    padding: 0px;
    margin:0px;
    background: #0E0E10;
    color:#fff;
    font-family: MuliLight-lg9VZ, 'sans-serif';
    font-size: 1.2rem;
    line-height: 1.0;
}

h1{
    font-size: 30px;
}
h2{
    font-size: 40px;
}
h3{
    font-size: 30px;
}
h4{
    font-size: 24px;
}
p{
    font-size: 20px;
}
li{
    list-style-type: none;
    font-size: 18px;
    font-weight: 600;
}
a{
    text-decoration: none;
    cursor: pointer;
    color:#fff;
}
i{
    color:#fff;
}

.container{
    width:80%;
    margin:auto;
}
.container-2{
    width:70%;
    margin:auto;
}
.container-fluid{
    width:90%;
    margin:auto;
}
.text-center{
    text-align: center;
}
.text-right{
    text-align: right;
}
.margin-auto{
    margin: auto;
}
.justify-content-center{
    justify-content: center;
}
.space-between{
    justify-content: space-between;
}
.space-around{
    justify-content: space-around;
}
.space-evenly{
    justify-content: space-evenly;
}
.align-center{
    align-items: center;
}
.flex{
    display: flex;
}
.flex-row{
    display: flex;
    flex-direction: row;
}
.flex-col{
    display: flex;
    flex-direction: column;
}
.flex-basis{
    flex-basis: 0;
    flex-grow: 1;
}
.flex-wrap{
    display: flex;
    flex-wrap: wrap;
}

.footer-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

footer {
    background: #0f0f11;
    padding: 25px 0px 15px;
    margin-top: 5%;
}
.footer-container div ul li {
    line-height: 2rem;
    font-size: 18px;
}

.copyright p {
    font-size: 60%;
    margin-left: 10%;
}

.copyright:before {
    height: 1px;
    display: block;
    content: "";
    width: 80%;
    margin-bottom: 20px;
    margin-left: 10%;
    background: #444455;
}

li.active{
    background: #ffffff;
    border-radius: 4px;
    padding-top: .2rem;
    padding-bottom: 0.1rem;
}

li.active a{
    color: #0e0e10;
}

@media screen and (max-width:768px){
    .flex-row{
        flex-direction: column;
    }
    h1{
        font-size: 50px;
    }
    h2{
        font-size: 35px;
    }
    h3{
        font-size: 30px;
    }
    h4{
        font-size: 23px;
        font-weight: bolder;
    }
    p{
        font-size: 22px;
    }
}

@media screen and (max-width:600px){
    h1{
        font-size: 35px;
    }
    h2{
        font-size: 28px;
    }
    h3{
        font-size: 25px;
    }
    h4{
        font-size: 22px;
        font-weight: bolder;
    }
    p{
        font-size: 20px;
    }
    li{
        list-style-type: none;
        font-size: 13px;
    }
}

@media screen and (max-width:480px){
    h1{
        font-size:30px;
    }
    h2{
        font-size: 25px;
    }
    h3{
        font-size: 20px;
    }
    h4{
        font-size: 18px;
        font-weight: bolder;
    }
    p{
        font-size: 18px;
    }
    li{
        list-style-type: none;
        font-size: 12px;
    }
}