* {
    margin: 0rem;
    padding: 0rem;
    color: rgb(240,240,240);
    font-family: 'arial', sans-serif;
    outline: none;
}
html {
    scroll-behavior: smooth;
}
body {
    background: rgb(10,10,10);
}
a {
   text-decoration: none; 
}
#toggle {
    display: none;
}

   /* header style rules start */
nav {
    width: 100%;
}

nav ul {
    width: 100%;
    position: fixed;
    top: 0%;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
    display: flex;
    justify-content: space-between;
    background: rgb(24,22,30);
    z-index: 2;
} 

nav ul li {
    padding: 0.8rem;
    list-style-type: none;
}

#navicon {
    width: 2rem;
    height: 2rem;
    stroke: #fff;
}

.quick-link {
    width: 84%;
    padding: 1rem;
    max-height: 10rem;
    overflow: auto;
    border: 0.1rem solid #000;
    border-radius: 0.5rem;
}

.side-bar {
    position: fixed;
    top: 10%;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: rgb(24,22,30);
    z-index: 1;
    transition: 1s;
}

.side-bar > li {
    padding: 1rem;
    list-style-type: none;
}

.side-bar > li:first-of-type {
    margin: 1rem 0rem 0.5rem 0rem;
}

.side-bar > li:first-of-type h1 {
    font-weight: 300;
}

.side-bar > li {
    font-size: 1.1rem;
}
.side-bar > li:nth-of-type(4) {
    border-bottom: 0.1rem solid #000;
}
.side-bar > li:nth-of-type(6) {
    border-bottom: 0.1rem solid #000;
}

.side-bar li ul {
    display: flex;
    justify-content: space-between;
}

.side-bar li ul li {
    list-style-type: none;
}

#toggle:checked ~ .side-bar {
   left: 0%;
}
   /* header style rules end */

main {
   padding: 0.4rem; 
}

main > h2 {
    font-size: 2rem;
    font-weight: 400;
    margin: 5rem 0rem 1rem 0rem;
}

.quicktools-wrap {
   width: 100%;
   overflow: auto;
   white-space: nowrap;
   height: 10rem;
   border-radius: 0.5rem;
   margin: 0.4rem 0rem 0rem 0rem;
}

.quicktools {
   width: 100%;
   height: 100%;
   background: rgb(24,22,30);
   border-radius: 0.5rem;
   display: inline-block;
}

.quicktools ul {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 0.4rem;
    align-items: center;
    padding: 0.5rem;
}

.quicktools ul li {
   list-style-type: none;
}

.quicktools ul li h3 {
    font-weight: 300;
    font-size: 1.6rem;
    white-space: wrap;
    margin: 0rem 0rem 0.5rem 0rem;
}

.quicktools ul li p {
    white-space: wrap;
}

.icon-holder {
   display: flex;
   justify-content: center;
   align-items: center;
   width: 100%;
   height: 9rem;
   background: #000;
   border-radius: 0.5rem;
}

.icon {
   width: 4rem;
   height: 4rem;
   fill: #fff;
}

section {
   padding: 0.4rem; 
}

section > h2 {
    font-size: 1.3rem;
    font-weight: 400;
    margin: 2rem 0rem 0.5rem 0rem;
}

.tools {
   width: 100%;
   height: 100%;
   background: rgb(24,22,30);
   border-radius: 0.5rem;
   display: inline-block; 
   margin-bottom: 0.8rem;
}

.tools ul {
   display: grid;
   grid-template-rows: 1fr;
   grid-template-columns: 1fr 1fr;
   grid-gap: 0.4rem;
   align-items: center;
   padding: 0.5rem;
}

.tools ul li {
   list-style-type: none;
}

.tools ul li h3 {
    font-weight: 300;
    font-size: 1.6rem;
    white-space: wrap;
    margin: 0rem 0rem 0.5rem 0rem;
}

.tools ul li p {
    white-space: wrap;
}
