::-webkit-scrollbar { /* width */
    width: 10px;
}
::-webkit-scrollbar-track { /* Track */
    background: #292927; 
}  
::-webkit-scrollbar-thumb { /* Handle */
    background: rgb(95, 93, 93); 
}
::-webkit-scrollbar-thumb:hover { /* Handle on hover */
    background: #555; 
}
@media (max-width: 1300px){
    #pinned-grid{
        width: 92.2% !important;
    }
}
@media (max-width: 1100px){
    #pinned-grid{
        width: 92.8% !important;
    }
}
@media (max-width: 900px){
    #desktop-nav{
        display: none !important;
    }
    #search-button span {
        top: 5px !important;
    }
    #perfil img{
        width: 80% !important;
    }
    #content-grid, #pinned-grid{
        grid-template-columns: 100% !important;
        margin-left: 5% !important;
        width: 90% !important;
    }
    #pinned-grid article h1{
        font-size: 1.8em !important;
    }
    #perfil h2{
        font-size: 2em !important;  
    }
}
body{
    font-family: 'Trebuchet MS', 'Lucida Sans', Arial, sans-serif;
    background-color: #1a1a1a;
    color: white;
}
html, div{display: block;}
main{margin-top: 80px;}
header{
    display: flex;
    position: fixed;
    height: 60px;
    background-color: #2a771b;
    top: 0;
    left: 0;
    width: 100%;
}
.warp{
    margin:0;
    max-width: 1366px;
}
.flex-auto{
    flex: auto;
}
.interface-link{
    text-decoration: none;
    color: white;
    border-radius: 15px;
}
.date{
    color: #fff;
}
#nav-title-box{
    margin: 0 0 0 20px;
}
#nav-title{
    text-decoration: none;
    color: white;
    font-weight: bold;
    position: relative;
    top: -9px;
    letter-spacing: 2px;
}
#nav-title:hover{
    letter-spacing: 5px;
}
#desktop-nav{
    width: 60%;
}
#desktop-nav-itens{
    display: flex;
    flex-direction: row;
    list-style: none;
    font-size: 1.5em;
    position: relative;
    padding: 0;
    justify-content: space-evenly;
    margin: 0;
    height: 100%;
}
.desktop-nav-item{
    height: 60px;
    width: 100%;
    text-align: center;
}
.desktop-nav-item .interface-link{
    position: relative;
    top: 15px;
}
.desktop-nav-item:hover, #search:hover{
    background-color: #259e0dcb
}
#search-button{
    font-size: 1.8em;
    position: relative;
    margin:0;
    text-align: center;
    padding-top: 0.95%;
    display: block;
    width: 10%;
}
#search-button span{
    position: relative;
    top: -10%;
}
#perfil{
    margin: 0 0 20px 3.5% ;
    display: flex;
    height: 12rem;
    width: 90%;
}
#perfil img{
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 100%;
}
#perfil div{
    margin-left: 20px;
}
#perfil h2{
    font-size: 3em;
    margin-bottom: 0;
    padding: 0;
}
#perfil p{
    width: 100%;
}
#pinned-grid{
    width: 92.1%;
    margin-left: 3.5%;
    margin-right: 0;
    display: grid;
    grid-gap: 0.9em;
    grid-template-columns: 50% 50%;
    align-items: center;
    margin-bottom: 20px;
}
#pinned-grid article h1{
    font-weight: 400;
    font-size: 2.5em;
    margin: 20px 0 20px 0;
}
#content-grid{
    width: 90%;
    margin-left: 3.5%;
    display: grid;
    grid-gap: 0.9em;
    grid-template-columns: 25% 25% 25% 25%;
    align-items: center;
}
#content-grid article, #pinned-grid article{
    height: 100px;
    background-color: #3a3a3a;
    border-radius: 15px;
    padding: 20px 25px;
    height: 300px;
}
article:hover{
    background-color: #454545 !important;

}
#content-grid article h2, #pinned-grid article h2{
    color: #30be14;
}
#content-grid article h2 a:hover, #pinned-grid article h2 a:hover{
    text-decoration: underline;
}
#content-grid article h1{
    font-weight: 400;
    font-size: 1.8em;
}
#content-grid article img, #pinned-grid article img{
    border-radius: 100%;
}
footer h2{
    margin-top: 20px;
    text-align: center;
    letter-spacing: 30px;
}
.none-radius{
    border-radius: 0 !important;
}