
/* ===========================
        Global
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    background:#0F172A;
    color:#F8FAFC;
    

}

body::before{

    content:"";

    position:fixed;

    width:450px;

    height:450px;

    background:#2563EB;

    filter:blur(180px);

    opacity:.15;

    top:-120px;

    left:-120px;

    z-index:-1;

}

body::after{

    content:"";

    position:fixed;

    width:350px;

    height:350px;

    background:#3B82F6;

    filter:blur(180px);

    opacity:.12;

    bottom:-100px;

    right:-100px;

    z-index:-1;

}

/* ===========================
        Navbar
=========================== */

.navbar{

    width:90%;
    max-width:1400px;

    margin:auto;

    padding:16px 0;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

/* Logo */

.logo{

    display:flex;

    align-items:center;

    gap:12px;

    text-decoration:none;

}

.logo-icon{

    width:48px;

    height:48px;

    border-radius:14px;

    background:linear-gradient(135deg,#2563EB,#3B82F6);

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    font-size:22px;

}

.logo h2{

    color:#fff;

    font-size:30px;

    font-weight:700;

}

.logo span{

    color:#3B82F6;

}

/* Navigation */

.nav-links{

    display:flex;

    align-items:center;

    gap:35px;

    list-style:none;

}

.nav-links a{

    text-decoration:none;

    color:#F8FAFC;

    font-size:16px;

    font-weight:500;

    transition:.3s;

}

.nav-links a:hover{

    color:#3B82F6;

}

/* Button */

.nav-btn{

    display:flex;

    align-items:center;

    gap:10px;

    text-decoration:none;

    background:#2563EB;

    color:white;

    padding:14px 24px;

    border-radius:12px;

    font-weight:600;

    transition:.3s;

}

.nav-btn:hover{

    background:#1D4ED8;

    transform:translateY(-2px);

}

/* Hamburger */

.menu-toggle{

    display:none;

    color:white;

    font-size:28px;

    cursor:pointer;

}

header{
    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    transition:transform .35s ease;
    background: rgba(15,23,42,.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,.06);
}

header.hide{

    transform:translateY(-100%);

}





/* ===========================
      Tools Dropdown
=========================== */

.tools-dropdown{

    position:relative;

}

.tools-btn{

    background:none;

    border:none;

    color:#F8FAFC;

    font-size:16px;

    font-weight:500;

    font-family:'Poppins',sans-serif;

    display:flex;

    align-items:center;

    gap:8px;

    cursor:pointer;

    transition:.3s;

}

.tools-btn:hover{

    color:#3B82F6;

}

.tools-btn i{

    font-size:12px;

    transition:.3s;

}

.tools-dropdown.active .tools-btn i{

    transform:rotate(180deg);

}

.tools-menu{

    position:absolute;

    top:60px;

    left:0;

    width:320px;

    background:#182338;

    border:1px solid rgba(59,130,246,.15);

    border-radius:18px;

    padding:10px;

    opacity:0;

    visibility:hidden;

    transform:translateY(15px);

    transition:.3s;

    box-shadow:0 20px 50px rgba(0,0,0,.35);

    z-index:999;
}

.tools-dropdown.active .tools-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.tools-menu a{

    display:flex;

    align-items:center;

    gap:15px;

    text-decoration:none;

    color:#fff;

    padding:14px;

    border-radius:12px;

    transition:.3s;

}

.tools-menu a:hover{

    background:#111C33;

}

.tools-menu i{

    width:45px;

    height:45px;

    border-radius:12px;

    background:#2563EB;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

}

.tools-menu strong{

    display:block;

    font-size:16px;

}

.tools-menu span{

    font-size:13px;

    color:#94A3B8;

}



/* =====================================
        Responsive Navbar
===================================== */

.overlay{

    position: fixed;

    inset: 0;

    background: rgba(0,0,0,.55);

    opacity: 0;

    visibility: hidden;

    transition: .35s;

    z-index: 998;

}

.overlay.active{

    opacity: 1;

    visibility: visible;

}

.mobile-menu{

    position: fixed;

    top: 0;

    right: -100%;

    width: 320px;

    max-width: 90%;

    height: 100vh;

    background: #111827;

    padding: 100px 25px 30px;

    display: flex;

    flex-direction: column;

    gap: 18px;

    transition: .35s ease;

    z-index: 999;

    overflow-y: auto;

    border-left: 1px solid rgba(255,255,255,.08);

}

.mobile-menu.active{

    right: 0;

}

.mobile-menu a{

    color:#F8FAFC;

    text-decoration:none;

    font-size:17px;

    padding:12px 0;

    border-bottom:1px solid rgba(255,255,255,.06);

}

.mobile-btn{

    margin-top:20px;

    background:#2563EB;

    border-radius:12px;

    text-align:center;

    padding:15px !important;

    border:none !important;

}

.mobile-tools-btn{

    width:100%;

    background:none;

    border:none;

    color:#fff;

    font-size:17px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

    padding:12px 0;

    font-family:'Poppins',sans-serif;

}

.mobile-tools-menu{

    display:none;

    padding-left:15px;

}

.mobile-tools.active .mobile-tools-menu{

    display:flex;

    flex-direction:column;

}

.mobile-tools-menu a{

    font-size:15px;

    color:#CBD5E1;

}

@media (max-width:991px){

    .nav-links{

        display:none;

    }

    .nav-btn{

        display:none;

    }

    .menu-toggle{

        display:block;

        cursor:pointer;

        z-index:1001;

    }

}

@media (min-width:992px){

    .mobile-menu,

    .overlay{

        display:none;

    }

}



/* ===========================
         Footer
=========================== */

.footer{

    background:#0B1120;

    border-top:1px solid rgba(255,255,255,.08);

    padding:70px 0 25px;

    margin-top:80px;

}

.footer-top{

    display:flex;

    justify-content:space-between;

    gap:70px;

    flex-wrap:wrap;

}

.footer-logo{

    max-width:320px;

}

.container{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo p{

    margin-top:20px;

    color:#94A3B8;

    line-height:1.8;

}

.footer-links{

    flex:1;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:40px;

}

.footer-column h4{

    color:#fff;

    margin-bottom:20px;

    font-size:18px;

}

.footer-column a{

    display:block;

    color:#94A3B8;

    text-decoration:none;

    margin-bottom:14px;

    transition:.3s;

}

.footer-column a:hover{

    color:#60A5FA;

    transform:translateX(6px);

}

.footer-column i{

    width:20px;

}

.footer-bottom{

    margin-top:50px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.08);

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.footer-bottom p{

    color:#94A3B8;

}

.footer-bottom-links{

    display:flex;

    gap:25px;

}

.footer-bottom-links a{

    text-decoration:none;

    color:#94A3B8;

    transition:.3s;

}

.footer-bottom-links a:hover{

    color:#60A5FA;

}


.article-header img{
    width:100%;
    height:auto;
    border-radius:20px;
    margin-top:30px;
    box-shadow:0 20px 40px rgba(0,0,0,.35);
    object-fit:cover;
}








/*==================================================
  ToolBucket Blog CSS
  Version: 1.0
  Author: ToolBucket
==================================================*/

/*=========================
  Google Font
=========================*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/*=========================
  Root Variables
=========================*/

:root{

    --primary:#3b82f6;
    --primary-hover:#2563eb;

    --bg:#0f172a;
    --bg-light:#1e293b;
    --card:#162033;

    --text:#f8fafc;
    --text-light:#cbd5e1;
    --text-muted:#94a3b8;

    --border:#334155;

    --green:#10b981;
    --yellow:#f59e0b;
    --red:#ef4444;

    --shadow:
    0 15px 35px rgba(0,0,0,.35);

    --radius:18px;

    --transition:.35s ease;

    --container:1100px;

}


/*=========================
  Reset
=========================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;

    background:var(--bg);

    color:var(--text);

    line-height:1.8;

    overflow-x:hidden;

}


/*=========================
  Selection
=========================*/

::selection{

    background:var(--primary);

    color:#fff;

}


/*=========================
  Scrollbar
=========================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#111827;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-hover);

}


/*=========================
  Images
=========================*/

img{

    max-width:100%;

    display:block;

}


/*=========================
  Links
=========================*/

a{

    text-decoration:none;

    color:var(--primary);

    transition:var(--transition);

}

a:hover{

    color:#60a5fa;

}


/*=========================
  Container
=========================*/

.blog-page{

    width:min(100% - 40px,var(--container));

    margin:auto;

    padding:60px 0;

}


/*=========================
  Typography
=========================*/


.blog-page h1{

    color:#fff;

    font-weight:700;

    line-height:1.3;

    margin-bottom:18px;

}


.blog-page h2{

    color:#fff;

    font-weight:700;

    line-height:1.3;

    margin-bottom:18px;

}


.blog-page h3{

    color:#fff;

    font-weight:700;

    line-height:1.3;

    margin-bottom:18px;

}



.blog-page h4{

    color:#fff;

    font-weight:700;

    line-height:1.3;

    margin-bottom:18px;

}

.blog-page h1{

    font-size:52px;

}

.blog-page h2{

    font-size:38px;

    margin-top:60px;

}

.blog-page h3{

    font-size:28px;

    margin-top:40px;

}

.blog-page h4{

    font-size:22px;

}



.blog-page p{

    color:var(--text-light);

    margin:20px 0;

    font-size:18px;

}

strong{

    color:#fff;

}


/*==================================
Related Tools
==================================*/

.related-tools{

    margin:80px 0;

}

.related-tools h2{

    text-align:center;

    margin-bottom:40px;

}


/*==================================
Tool Links Grid
==================================*/

.tool-links{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:25px;

}


/*==================================
Tool Card
==================================*/

.tool-links a{

    display:flex;

    align-items:center;

    justify-content:center;

    min-height:120px;

    padding:25px;

    text-align:center;

    text-decoration:none;

    font-size:18px;

    font-weight:600;

    color:#F8FAFC;

    background:#162033;

    border:1px solid rgba(59,130,246,.15);

    border-radius:18px;

    transition:.35s ease;

    position:relative;

    overflow:hidden;

}


/* Glow Effect */

.tool-links a::before{

    content:"";

    position:absolute;

    width:150px;

    height:150px;

    background:rgba(59,130,246,.10);

    border-radius:50%;

    top:-120px;

    right:-120px;

    transition:.35s;

}

.tool-links a{

    flex-direction:column;

    gap:18px;

}

.tool-links i{

    font-size:34px;

    color:#3B82F6;

    transition:.3s;

}

.tool-links a:hover i{

    transform:scale(1.15) rotate(-5deg);

}

/* Hover */

.tool-links a:hover{

    transform:translateY(-8px);

    border-color:#3B82F6;

    box-shadow:0 20px 40px rgba(37,99,235,.18);

    color:#fff;

}

.tool-links a:hover::before{

    transform:scale(1.3);

}





/*=========================
  Horizontal Line
=========================*/

hr{

    border:none;

    height:1px;

    background:var(--border);

    margin:60px 0;

}


/*=========================
  Sections
=========================*/

section{

    margin:70px 0;

}


/*=========================
  Responsive Text
=========================*/

@media(max-width:900px){

    .blog-page h1{

        font-size:42px;

    }

    .blog-page h2{

        font-size:34px;

    }

}

@media(max-width:768px){

    .blog-page{

        width:min(100% - 24px,var(--container));

    }

   .blog-page  h1{

        font-size:34px;

    }

    .blog-page h2{

        font-size:28px;

    }

   .blog-page  h3{

        font-size:24px;

    }

   .blog-page  p{

        font-size:17px;

    }

}



/*==================================================
BLOG HERO
==================================================*/

.blog-hero{

    position:relative;

    padding:80px 60px;

    background:linear-gradient(
        135deg,
        #1e293b,
        #0f172a
    );

    border:1px solid var(--border);

    border-radius:30px;

    overflow:hidden;

    margin-bottom:50px;

    box-shadow:var(--shadow);

}

.blog-hero::before{

    content:"";

    position:absolute;

    width:350px;
    height:350px;

    background:rgba(59,130,246,.08);

    border-radius:50%;

    top:-120px;
    right:-100px;

    filter:blur(40px);

}

.blog-hero::after{

    content:"";

    position:absolute;

    width:250px;
    height:250px;

    background:rgba(16,185,129,.08);

    border-radius:50%;

    bottom:-80px;
    left:-60px;

    filter:blur(30px);

}


/*==================================================
CATEGORY BADGE
==================================================*/

.blog-category{

    display:inline-block;

    padding:10px 18px;

    border-radius:100px;

    background:rgba(59,130,246,.12);

    color:#60a5fa;

    font-size:14px;

    font-weight:700;

    letter-spacing:.5px;

    text-transform:uppercase;

    border:1px solid rgba(59,130,246,.25);

    margin-bottom:25px;

}


/*==================================================
TITLE
==================================================*/

.blog-hero h1{

    font-size:56px;

    line-height:1.2;

    margin-bottom:25px;

    max-width:900px;

}


/*==================================================
DESCRIPTION
==================================================*/

.blog-description{

    max-width:760px;

    font-size:20px;

    color:var(--text-light);

    margin-bottom:35px;

}


/*==================================================
META
==================================================*/

.blog-meta{

    display:flex;

    flex-wrap:wrap;

    gap:20px;

    margin-top:30px;

}

.blog-meta span{

    display:flex;

    align-items:center;

    gap:10px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    padding:12px 18px;

    border-radius:12px;

    color:var(--text-light);

    font-size:15px;

}

.blog-meta i{

    color:var(--primary);

}


/*==================================================
FEATURED IMAGE
==================================================*/

.featured-image{

    width:100%;

    border-radius:24px;

    margin:60px 0;

    border:1px solid var(--border);

    box-shadow:var(--shadow);

    transition:.4s;

}

.featured-image:hover{

    transform:scale(1.01);

}


/*==================================================
BREADCRUMB
==================================================*/

.breadcrumb{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-bottom:35px;

    color:var(--text-muted);

    font-size:15px;

}

.breadcrumb a{

    color:var(--text-muted);

}

.breadcrumb a:hover{

    color:var(--primary);

}


/*==================================================
AUTHOR CARD
==================================================*/

.author-card{

    display:flex;

    align-items:center;

    gap:18px;

    margin-top:35px;

}

.author-card img{

    width:65px;

    height:65px;

    border-radius:50%;

    object-fit:cover;

}

.author-card h4{

    margin-bottom:4px;

    font-size:18px;

}

.author-card p{

    margin:0;

    font-size:14px;

    color:var(--text-muted);

}


/*==================================================
READING PROGRESS
==================================================*/

.progress-bar{

    position:fixed;

    top:0;

    left:0;

    width:0;

    height:4px;

    background:linear-gradient(
        to right,
        #3b82f6,
        #06b6d4
    );

    z-index:9999;

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:992px){

.blog-hero{

padding:60px 40px;

}

.blog-hero h1{

font-size:44px;

}

}


@media(max-width:768px){

.blog-hero{

padding:40px 25px;

border-radius:20px;

}

.blog-hero h1{

font-size:34px;

}

.blog-description{

font-size:17px;

}

.blog-meta{

gap:12px;

}

.blog-meta span{

font-size:14px;

padding:10px 14px;

}

.featured-image{

margin:40px 0;

}

}


/*==================================================
TABLE OF CONTENTS
==================================================*/

.table-of-contents{

    position:sticky;

    top:100px;

    background:var(--card);

    border:1px solid var(--border);

    border-radius:20px;

    padding:30px;

    margin:50px 0;

    box-shadow:var(--shadow);

}

.table-of-contents h2{

    margin:0 0 20px;

    font-size:24px;

}

.table-of-contents ol{

    list-style:none;

    margin:0;

    padding:0;

    counter-reset:item;

}

.table-of-contents li{

    margin:14px 0;

}

.table-of-contents li::before{

    counter-increment:item;

    content:counter(item);

    display:inline-flex;

    justify-content:center;

    align-items:center;

    width:28px;

    height:28px;

    margin-right:12px;

    border-radius:50%;

    background:rgba(59,130,246,.15);

    color:var(--primary);

    font-weight:700;

}

.table-of-contents a{

    color:var(--text-light);

    transition:var(--transition);

}

.table-of-contents a:hover{

    color:var(--primary);

    padding-left:6px;

}


/*==================================================
BLOG CONTENT
==================================================*/

.blog-page section{

    max-width:850px;

    margin:70px auto;

}

.blog-page p{

    font-size:18px;

    line-height:1.9;

    color:var(--text-light);

}


/*==================================================
HEADINGS
==================================================*/

.blog-page h2{

    position:relative;

    padding-bottom:12px;

}

.blog-page h2::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:70px;

    height:4px;

    background:var(--primary);

    border-radius:10px;

}

.blog-page h3{

    margin-top:45px;

}


/*==================================================
LISTS
==================================================*/

.blog-page ul{

    list-style:none;

    margin:25px 0;

    padding:0;

}

.blog-page ul li{

    position:relative;

    padding-left:35px;

    margin:16px 0;

}

.blog-page ul li::before{

    content:"✔";

    position:absolute;

    left:0;

    color:var(--green);

    font-weight:bold;

}

.blog-page ol{

    margin:30px;

}

.blog-page ol li{

    margin:14px 0;

}


/*==================================================
BLOCKQUOTE
==================================================*/

blockquote{

    margin:40px 0;

    padding:30px;

    background:rgba(59,130,246,.08);

    border-left:5px solid var(--primary);

    border-radius:15px;

    color:#fff;

    font-size:20px;

    font-style:italic;

}


/*==================================================
INLINE CODE
==================================================*/

code{

    background:#111827;

    color:#60a5fa;

    padding:4px 8px;

    border-radius:6px;

    font-size:15px;

}


/*==================================================
CODE BLOCK
==================================================*/

pre{

    overflow:auto;

    background:#020617;

    border:1px solid var(--border);

    border-radius:18px;

    padding:25px;

    margin:35px 0;

}

pre code{

    background:none;

    color:#e2e8f0;

    padding:0;

}

/*==================================================
TIP / INFO / SUCCESS / WARNING BOXES
==================================================*/

.tip-box,
.info-box,
.success-box,
.warning-box{

    margin:35px 0;
    padding:28px;

    border-radius:18px;

    border-left:5px solid;

    line-height:1.8;

}

.tip-box{

    background:#172554;
    border-color:#3b82f6;

}

.info-box{

    background:#1e293b;
    border-color:#06b6d4;

}

.success-box{

    background:#052e16;
    border-color:#22c55e;

}

.warning-box{

    background:#3f1d0d;
    border-color:#f59e0b;

}

.tip-box strong,
.info-box strong,
.success-box strong,
.warning-box strong{

    display:block;

    margin-bottom:12px;

    font-size:20px;

    color:#fff;

}

.tip-box p,
.info-box p,
.success-box p,
.warning-box p{

    margin:0;

}


/*==================================================
FAQ
==================================================*/

.faq-item{

    background:#162033;

    border:1px solid #334155;

    border-radius:16px;

    padding:25px;

    margin:25px 0;

    transition:.3s;

}

.faq-item:hover{

    border-color:#3b82f6;

    transform:translateY(-4px);

}

.faq-item h3{

    margin-top:0;

    margin-bottom:15px;

    color:#fff;

}

.faq-item p{

    margin:0;

}


/*==================================================
CTA
==================================================*/

.cta-box{

    text-align:center;

    background:linear-gradient(135deg,#1e293b,#162033);

    border:1px solid #334155;

    border-radius:24px;

    padding:60px 40px;

    margin:80px 0;

}

.cta-box h2{

    margin-top:0;

}

.cta-box p{

    max-width:700px;

    margin:20px auto 40px;

}


/*==================================================
BUTTONS
==================================================*/

.btn-primary,
.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 30px;

    border-radius:12px;

    font-weight:600;

    transition:.3s;

}

.btn-primary{

    background:#2563eb;

    color:#fff;

}

.btn-primary:hover{

    background:#1d4ed8;

}

.btn-secondary{

    background:#162033;

    color:#fff;

    border:1px solid #3b82f6;

}

.btn-secondary:hover{

    background:#1e293b;

}


/*==================================================
RELATED TOOLS
==================================================*/

.related-tools{

    margin:80px auto;

    max-width:900px;

}

.related-tools h2{

    text-align:center;

    margin-bottom:40px;

}

.tool-links{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:24px;

}

.tool-links a{

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    gap:18px;

    min-height:180px;

    text-align:center;

    color:#fff;

    background:#162033;

    border:1px solid #334155;

    border-radius:20px;

    transition:.35s;

    padding:25px;

}

.tool-links a:hover{

    transform:translateY(-8px);

    border-color:#3b82f6;

    box-shadow:0 20px 35px rgba(37,99,235,.2);

}

.tool-links i{

    font-size:34px;

    color:#3b82f6;

}


/*==================================================
SECTION WIDTH
==================================================*/

.blog-page>section{

    max-width:900px;

    margin:70px auto;

}


/*==================================================
TABLE FIX
==================================================*/

.comparison-table{

    overflow-x:auto;

    display:block;

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:768px){

.tool-links{

grid-template-columns:1fr;

}

.cta-box{

padding:40px 20px;

}

.btn-primary,
.btn-secondary{

width:100%;

margin-bottom:15px;

}

}


#when-to-resize,
#when-to-compress,
#use-both,
#best-format,
#faq,
.blog-page section{

    max-width:900px;

    margin:70px auto;

}


/*==================================================
TABLE
==================================================*/

table{

    width:100%;

    border-collapse:collapse;

    margin:40px 0;

    border-radius:18px;

    overflow:hidden;

    box-shadow:var(--shadow);

}

thead{

    background:var(--primary);

}

thead th{

    color:#fff;

    padding:18px;

    text-align:left;

    font-size:16px;

}

tbody{

    background:var(--card);

}

tbody td{

    padding:18px;

    color:var(--text-light);

    border-bottom:1px solid var(--border);

}

tbody tr:hover{

    background:rgba(59,130,246,.08);

}


/*==================================================
IMAGES
==================================================*/

.blog-image{

    width:100%;

    border-radius:22px;

    margin:40px 0;

    transition:.4s;

    border:1px solid var(--border);

    box-shadow:var(--shadow);

}

.blog-image:hover{

    transform:translateY(-6px);

}


/*==================================================
IMAGE CAPTION
==================================================*/

.image-caption{

    text-align:center;

    color:var(--text-muted);

    font-size:15px;

    margin-top:-20px;

    margin-bottom:35px;

}


/*==================================================
HORIZONTAL RULE
==================================================*/

.blog-page hr{

    margin:70px 0;

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:768px){

.table-of-contents{

position:relative;

top:0;

padding:22px;

}

.blog-page{

max-width:100%;

}

.blog-page p{

font-size:17px;

}

thead th,
tbody td{

padding:14px;

font-size:14px;

}

blockquote{

font-size:18px;

padding:22px;

}

pre{

padding:18px;

}

}