@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: 5em;
}

section.help{
    margin: auto;
    width: 85%;
    background: rgba(65, 65, 77, 0.2);
    padding: 20px;
    margin-top: 5em;
    border-radius: 7px;

}
section.help h1{
    color: #ddd;
    font-family: 'Raleway', sans-serif;
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
}
section.help h3{
    color: gold;
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
}
section.help h1 span{
    border-bottom: 2px solid transparent;
}
section.help h1 i{
    background: linear-gradient(
            to right, #f32170, #ff6b08,
             #cf23cf, #eedd44);
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
}
section.help h1 span::after{
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #ddd;
    transition: width .3s;
}
section.help h1 span:hover::after {
    width: 15%;
}

section.help p{
    color: #ddd;
    font-family: 'Roboto Mono', monospace;
    font-weight: bold;
    text-transform: uppercase;
}
section.help p a{
    color: yellow;
}
section.help p span{
    color: gold;
}

@media(max-width:786px){
    section.help{
        width: 98%;
    }
}