:root{
    --header: #F6F8FA;
    --light: #FFFFFF;
    --border: #D1D9E0;
    --hover: #1F2328;
    --color: #6f6f72;
    --primary: #0080FF;
    --danger: #ee1e1e;
    --danger-hover: #740e0e;
    --box-shadow: rgba(0,0,0,0.25);
}
*{
    margin: 0;
    padding: 0;
}
a{
    font-family: GoogleSansFlex;
    text-decoration: none;
}
@font-face {
    font-family: GoogleSansFlex;
    src: url("../fonts/GoogleSansFlex.ttf");
}
body{
    display: flex;
    flex-direction: column;
    font-family: GoogleSansFlex;
    overflow: hidden;
    background: var(--light);
    height: 100vh;
    width: 100vw;
}
main{
    flex-direction: column;
    overflow-y: scroll;
}
.help{
    display: flex;
    margin: 0 auto;
    max-width: 30rem;
    flex-direction: column;
    gap: 1rem;
}
.help h1{
    text-align: center;
    font-weight: 400;
    font-size: 1.8rem;
    padding: 1rem;
}
.help .search{
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--light);
    border: .1rem solid var(--border);
    border-radius: .3rem;
    padding: .6rem .8rem;
    color: var(--color);
}
.help .search svg{
    width: 1.5rem;
    aspect-ratio: 1/1;
    fill: currentColor;
}
.help .search button,
.help .search input{
    border: none;
    background: none;
    outline: none;
    font-size: 1rem;
}
.help .search input{
    flex: 1;
}
.infobar h3{
    font-size: 1.3rem;
    font-weight: 500;
}
.gridlist{
    display: grid;
    gap: .5rem;
    grid-template-columns: repeat(2, 1fr);
}
.gridlist .item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
    position: relative;
    aspect-ratio: 1/1;
    transition: all .3s ease-in-out;
    border-radius: .3rem;
    background: var(--header);
}
.gridlist .item:hover{
    box-shadow: 0 0 .3rem 0 var(--box-shadow);
}
.gridlist .item svg{
    width: 3rem;
    height: 3rem;
    margin: 0 0 1rem 0;
    transition: all .3s ease-in-out;
}
.gridlist .item b,
.gridlist .item p{
    max-width: 80%;
}
.footer{
    padding: .5rem ;
    font-family: sans-serif;
    text-align: center;
}