section.docs h1{
    font-weight:bold;
    margin-bottom:2rem;
    font-size:2.2rem;
}

section.docs .docs-item{
    font-size:1.2rem;
    margin-bottom:2rem;
    padding:1rem;
    box-shadow:0px 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-radius:5px;
    font-weight:bold;
}
section.docs .docs-item canvas{
    width:100%;
    transition: all 0.3s ease;
}
section.docs .docs-item:hover{
    transform: translateY(-10px);
    box-shadow:0px 10px 15px rgba(0,0,0,0.2);
}
section.docs .docs-item:hover canvas{
    transform:scale(0.98);
}