@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@500&display=swap');

*{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
::-webkit-scrollbar{
    width: 5px;
}
::-webkit-scrollbar-track{
    background: black;
}
::-webkit-scrollbar-thumb{
    background: rgb(33, 35, 51);
}
body{
    background-color: rgb(33, 35, 51) /*rgb(24,25,37)*/;
    padding: 0;
    margin: 0;
}
nav{
    background-color: #181925;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
}
nav .nav-link{
    border: 1px solid transparent;
}
nav .nav-link::after{
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width .3s;
}
nav .nav-link:hover::after {
    width: 100%;
}
hr.sec-hr{
    width: 75%;
    margin: auto;
    background: rgba(172, 172, 172, 0.8);
    margin-top: 2em;
    margin-bottom: 2em;
}

section.help{
    margin: auto;
    width: 85%;
    background: rgba(65, 65, 77, 0.2);
    padding: 20px;
    margin-top: 5em;
    border-radius: 7px;

}

section.help div.category h1{
    font-family: 'Raleway', sans-serif;
    color: #ddd;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

section.help div.category h1 i{
    color: orange;
}

section.help div.all{
    margin: auto;
    background: rgba(0, 0, 0, .3);
    padding: 20px;
    width: 98%;
}

section.help div.all div.image{
    background: rgb(33, 35, 51);
    padding: 5px;
    height: 325px;
    width: 23%;
    display: inline-block;
    margin: 5px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 3px;
}

section.help div.all div.image img{
    padding: 2px;
    height: 275px;
}

section.help div.all div.image p{
    font-family: 'Roboto Mono', monospace;
    color: #ddd;
    font-size: 13px;
    background: rgba(0, 0, 0, .3);
    padding: 3px;
    margin-top: 10px;
}

section.help div.all h2{
    font-family: 'Roboto Mono', monospace;
    color: #ddd;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 5px;
}

@media(max-width:786px){
    section.help{
        width: 98%;
    }
    section.help div.all div.image{
        display: block;
        width: 100%;
    }
}