*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#000;
    font-family:'Orbitron',sans-serif;
    color:#eee;
}

::selection{
    background:red;
    color:#000;
}

/* respect reduced motion preferences */
@media (prefers-reduced-motion: reduce){
    *, *::before, *::after{
        animation-duration:.001ms !important;
        animation-iteration-count:1 !important;
        transition-duration:.001ms !important;
        scroll-behavior:auto !important;
    }
}

a{
    color:inherit;
}

/* =========================
   MAIN BACKGROUND (HERO)
========================= */

.hero{

    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;

    background:
    radial-gradient(circle at center, rgba(255,0,0,0.12), transparent 60%),
    linear-gradient(to right,#000 10%,#050505 50%,#000 100%);
}

/* =========================
   GRID EFFECT
========================= */

.grid{

    position:absolute;
    inset:0;

    background-image:
    linear-gradient(rgba(255,0,0,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,0,0,.05) 1px, transparent 1px);

    background-size:50px 50px;

    animation:gridMove 12s linear infinite;

    opacity:.4;
}

@keyframes gridMove{

    0%{
        transform:translateY(0px);
    }

    100%{
        transform:translateY(50px);
    }
}

/* =========================
   RED MOVING LIGHTS
========================= */

.red-layer{

    position:absolute;
    top:0;

    width:350px;
    height:100%;

    filter:blur(2px);

    mix-blend-mode:screen;
}

.red1{

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(255,0,0,.9),
        rgba(255,0,0,.1),
        transparent
    );

    animation:moveRight 6s linear infinite;
}

.red2{

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(255,0,0,.5),
        rgba(255,0,0,.08),
        transparent
    );

    animation:moveRight 9s linear infinite;

    animation-delay:1s;
}

.red3{

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(255,50,50,.3),
        rgba(255,0,0,.03),
        transparent
    );

    animation:moveRight 12s linear infinite;

    animation-delay:2s;
}

@keyframes moveRight{

    0%{
        transform:translateX(-600px);
    }

    100%{
        transform:translateX(2200px);
    }
}

/* =========================
   MATRIX TEXT
========================= */

.matrix{

    position:absolute;
    inset:0;

    opacity:.12;
    overflow:hidden;
}

.matrix span{

    position:absolute;

    color:#fff;

    font-family:monospace;

    font-size:14px;

    text-shadow:0 0 10px red;

    animation:flicker 2s infinite;
}

@keyframes flicker{

    0%,100%{
        opacity:.2;
    }

    50%{
        opacity:1;
    }
}

/* =========================
   NAVBAR
========================= */

nav{

    position:absolute;
    top:0;
    left:0;

    width:100%;

    padding:20px 40px;

    display:flex;
    justify-content:space-between;
    align-items:flex-start;

    z-index:100;
}

.logoText{

    color:#fff;

    font-size:28px;

    font-weight:900;

    letter-spacing:2px;

    white-space:nowrap;
}

.logoText span{

    color:red;

    text-shadow:
    0 0 10px red,
    0 0 20px red;
}

nav ul{

    display:flex;

    flex-wrap:wrap;

    justify-content:flex-end;

    gap:12px;

    list-style:none;

    max-width:70%;
}

.navBtn{

    position:relative;

    display:inline-block;

    padding:12px 18px;

    color:#fff;

    text-decoration:none;

    font-size:11px;

    letter-spacing:1px;

    text-transform:uppercase;

    border:1px solid rgba(255,0,0,.7);

    overflow:hidden;

    transition:.4s;

    background:rgba(255,0,0,.05);

    backdrop-filter:blur(4px);

    box-shadow:
    0 0 10px rgba(255,0,0,.2),
    inset 0 0 10px rgba(255,0,0,.1);
}

.navBtn::before{

    content:'';

    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.8),
        transparent
    );

    transition:.6s;
}

.navBtn:hover{

    background:red;

    border-color:red;

    transform:translateY(-3px);

    box-shadow:
    0 0 15px red,
    0 0 35px red,
    0 0 70px rgba(255,0,0,.7);
}

.navBtn:hover::before{

    left:100%;
}

/* =========================
   CONTENT (HERO)
========================= */

.content{

    position:relative;

    z-index:20;

    width:100%;
    height:100vh;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 8%;
}

.left{

    width:50%;
}

.left h1{

    font-size:80px;

    line-height:1.05;

    color:#fff;

    text-transform:uppercase;

    font-weight:900;
}

.left h1 span{

    color:red;

    text-shadow:
    0 0 10px red,
    0 0 25px red,
    0 0 60px red;
}

.left p{

    margin-top:30px;

    color:#bbb;

    font-family:'Rajdhani',sans-serif;

    font-size:20px;

    font-weight:500;

    line-height:1.7;

    max-width:650px;
}

.buttons{

    margin-top:40px;

    display:flex;

    gap:25px;
}

.btn{

    position:relative;

    padding:18px 40px;

    border:2px solid red;

    color:#fff;

    text-decoration:none;

    letter-spacing:2px;

    overflow:hidden;

    transition:.4s;

    font-size:13px;

    cursor:pointer;
    background:none;
    font-family:'Orbitron',sans-serif;
}

.btn::before{

    content:'';

    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.9),
        transparent
    );

    transition:.6s;
}

.btn:hover{

    background:red;

    box-shadow:
    0 0 20px red,
    0 0 50px red;
}

.btn:hover::before{

    left:100%;
}

.btn2{

    border:2px solid #fff;
}

.btn2:hover{

    background:#fff;

    color:#000;

    box-shadow:
    0 0 20px #fff,
    0 0 50px #fff;
}

.right{

    width:50%;

    display:flex;
    justify-content:center;
    align-items:center;
}

.logoWrapper{

    position:relative;

    width:430px;
    height:430px;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    background:
    radial-gradient(circle, rgba(255,255,255,.08), transparent 70%);

    box-shadow:
    0 0 40px rgba(255,0,0,.7),
    0 0 90px rgba(255,0,0,.5),
    inset 0 0 40px rgba(255,0,0,.4);

    animation:pulse 3s infinite alternate;
}

.logoWrapper::before{

    content:'';

    position:absolute;

    width:100%;
    height:100%;

    border-radius:50%;

    border:3px solid rgba(255,0,0,.4);

    border-top:3px solid red;
    border-bottom:3px solid red;

    animation:rotateRing 8s linear infinite;
}

@keyframes rotateRing{

    100%{
        transform:rotate(360deg);
    }
}

@keyframes pulse{

    from{
        transform:scale(1);
    }

    to{
        transform:scale(1.04);
    }
}

.logo{

    width:250px;
    border-radius: 50%;

    animation:flipLogo 6s linear infinite;

    filter:
    drop-shadow(0 0 20px red)
    drop-shadow(0 0 40px red);
}

@keyframes flipLogo{

    0%{
        transform:rotateY(0deg);
    }

    100%{
        transform:rotateY(360deg);
    }
}

.scrollCue{
    position:absolute;
    bottom:90px;
    left:50%;
    transform:translateX(-50%);
    z-index:30;
    color:#ff5555;
    font-family:'Rajdhani',sans-serif;
    font-size:12px;
    letter-spacing:3px;
    text-transform:uppercase;
    text-align:center;
    animation:textBlink 1.8s infinite;
}
.scrollCue::after{
    content:'';
    display:block;
    width:1px;
    height:26px;
    background:red;
    margin:8px auto 0;
    box-shadow:0 0 8px red;
}

.bottomTitle{

    position:absolute;

    bottom:20px;

    width:100%;

    text-align:center;

    font-size:64px;

    font-weight:900;

    color:transparent;

    -webkit-text-stroke:2px #173eff86;

    text-shadow:
    0 0 10px red,
    0 0 30px red;

    animation:textBlink 1.5s infinite;

    z-index:30;
}

@keyframes textBlink{

    0%,100%{
        opacity:1;
    }

    50%{
        opacity:.5;
    }
}

/* =========================
   SECTION-WIDE SYSTEM
   (shared by every section below the hero)
========================= */

section.block{
    position:relative;
    padding:120px 8%;
    background:#000;
    overflow:hidden;
    border-top:1px solid rgba(255,0,0,.15);
}

section.block::before{
    content:'';
    position:absolute;
    inset:0;
    background-image:
    linear-gradient(rgba(255,0,0,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,0,0,.04) 1px, transparent 1px);
    background-size:60px 60px;
    pointer-events:none;
}

.blockInner{
    position:relative;
    z-index:2;
    max-width:1200px;
    margin:0 auto;
}

.eyebrow{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#ff3b3b;
    font-size:12px;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:18px;
}
.eyebrow::before{
    content:'';
    width:30px;
    height:2px;
    background:red;
    box-shadow:0 0 8px red;
}

h2.blockTitle{
    font-size:42px;
    font-weight:900;
    text-transform:uppercase;
    color:#fff;
    letter-spacing:1px;
    margin-bottom:16px;
}
h2.blockTitle span{
    color:red;
    text-shadow:0 0 10px red, 0 0 25px red;
}

p.blockLede{
    font-family:'Rajdhani',sans-serif;
    font-size:19px;
    font-weight:500;
    color:#aaa;
    max-width:760px;
    line-height:1.7;
    margin-bottom:60px;
}

/* reveal-on-scroll */
.reveal{
    opacity:0;
    transform:translateY(30px);
    transition:opacity .7s ease, transform .7s ease;
}
.reveal.isVisible{
    opacity:1;
    transform:translateY(0);
}

/* =========================
   ABOUT
========================= */

.aboutGrid{
    display:grid;
    grid-template-columns: 1fr 1.4fr;
    gap:60px;
    align-items:start;
}

.aboutCard{
    border:1px solid rgba(255,0,0,.4);
    background:rgba(255,0,0,.04);
    padding:30px;
    box-shadow:0 0 25px rgba(255,0,0,.15), inset 0 0 20px rgba(255,0,0,.08);
}

.aboutCard .role{
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#ff5555;
    margin-bottom:6px;
}

.aboutCard .name{
    font-size:26px;
    font-weight:900;
    color:#fff;
    margin-bottom:16px;
}

.aboutFacts{
    list-style:none;
    font-family:'Rajdhani',sans-serif;
    font-size:16px;
    color:#ccc;
}
.aboutFacts li{
    display:flex;
    justify-content:space-between;
    padding:10px 0;
    border-bottom:1px dashed rgba(255,0,0,.25);
}
.aboutFacts li span:first-child{
    color:#ff5555;
    text-transform:uppercase;
    font-size:12px;
    letter-spacing:1px;
}

.aboutBio p{
    font-family:'Rajdhani',sans-serif;
    font-size:18px;
    font-weight:500;
    color:#ccc;
    line-height:1.85;
    margin-bottom:22px;
}

.focusTags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:20px;
}
.focusTags span{
    border:1px solid rgba(255,0,0,.5);
    padding:8px 16px;
    font-size:12px;
    letter-spacing:1px;
    text-transform:uppercase;
    color:#ff8080;
    background:rgba(255,0,0,.05);
}

/* =========================
   SKILLS
========================= */

.skillGrid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(230px, 1fr));
    gap:26px;
}

.skillCard{
    position:relative;
    padding:28px 24px;
    border:1px solid rgba(255,0,0,.3);
    background:linear-gradient(160deg, rgba(255,0,0,.06), rgba(0,0,0,.4));
    overflow:hidden;
    transition:transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}

.skillCard::after{
    content:'';
    position:absolute;
    top:-50%;
    left:-50%;
    width:200%;
    height:200%;
    background:conic-gradient(from 0deg, transparent 0deg, rgba(255,0,0,.35) 30deg, transparent 60deg);
    animation:spinSheen 5s linear infinite;
    opacity:0;
    transition:opacity .4s ease;
}

.skillCard:hover{
    transform:translateY(-8px);
    border-color:red;
    box-shadow:0 10px 40px rgba(255,0,0,.35);
}
.skillCard:hover::after{
    opacity:1;
}

@keyframes spinSheen{
    100%{ transform:rotate(360deg); }
}

.skillCard .icon{
    font-size:30px;
    margin-bottom:16px;
    color:#ff2b2b;
    text-shadow:0 0 12px red;
    position:relative;
    z-index:2;
}
.skillCard h3{
    font-size:16px;
    color:#fff;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:10px;
    position:relative;
    z-index:2;
}
.skillCard p{
    font-family:'Rajdhani',sans-serif;
    font-size:14px;
    color:#aaa;
    position:relative;
    z-index:2;
}
.skillBar{
    margin-top:16px;
    height:5px;
    background:rgba(255,255,255,.08);
    position:relative;
    z-index:2;
    overflow:hidden;
}
.skillBar i{
    display:block;
    height:100%;
    background:linear-gradient(90deg, #ff0000, #ff8080);
    box-shadow:0 0 10px red;
    width:0%;
    transition:width 1.4s cubic-bezier(.2,.8,.2,1);
}
.skillCard.isVisible .skillBar i{
    width:var(--pct);
}

/* =========================
   CERTIFICATIONS
========================= */

.certGrid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
    gap:26px;
}
.certCard{
    display:flex;
    flex-direction:column;
    align-items:center;
    padding:30px 22px;
    border:1px solid rgba(255,0,0,.35);
    background:rgba(255,0,0,.03);
    text-align:center;
    position:relative;
    transition:.3s;
}
.certCard:hover{
    border-color:red;
    box-shadow:0 0 25px rgba(255,0,0,.3);
    transform:translateY(-6px);
}
.certCard .badgeImgWrap{
    width:110px;
    height:110px;
    margin-bottom:18px;
    border:2px solid red;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    background:#0a0000;
    box-shadow:0 0 20px rgba(255,0,0,.6), inset 0 0 15px rgba(255,0,0,.4);
    flex-shrink:0;
}
.certCard .badgeImgWrap img{
    width:100%;
    height:100%;
    object-fit:contain;
    padding:12px;
}
.certCard h3{
    color:#fff;
    font-size:18px;
    margin-bottom:6px;
    letter-spacing:1px;
}
.certCard p{
    font-family:'Rajdhani',sans-serif;
    color:#999;
    font-size:14px;
    margin-bottom:16px;
}
.certCard .verifyLink{
    margin-top:auto;
    font-size:11px;
    letter-spacing:1.5px;
    text-transform:uppercase;
    color:#ff5555;
    text-decoration:none;
    border:1px solid rgba(255,0,0,.5);
    padding:8px 16px;
    transition:.3s;
}
.certCard .verifyLink:hover{
    background:red;
    color:#fff;
    box-shadow:0 0 15px red;
}
.certCard.soon{
    border-style:dashed;
    opacity:.55;
}
.certCard.soon .badgeImgWrap{
    border-style:dashed;
    box-shadow:none;
    font-size:30px;
    color:#ff5555;
}

/* =========================
   RESEARCH AREAS
========================= */

.researchGrid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
    gap:2px;
    border:1px solid rgba(255,0,0,.3);
    background:rgba(255,0,0,.3);
}
.researchItem{
    background:#000;
    padding:34px 24px;
    transition:background .3s ease;
}
.researchItem:hover{
    background:#0a0000;
}
.researchItem .num{
    font-size:12px;
    color:#ff5555;
    letter-spacing:2px;
    margin-bottom:14px;
}
.researchItem h3{
    color:#fff;
    font-size:17px;
    text-transform:uppercase;
    letter-spacing:1px;
}

/* =========================
   PROJECTS
========================= */

.projectGrid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap:26px;
}
.projectCard{
    border:1px solid rgba(255,0,0,.3);
    padding:28px;
    background:rgba(255,255,255,.02);
    display:flex;
    flex-direction:column;
    height:100%;
    transition:.35s;
}
.projectCard:hover{
    border-color:red;
    box-shadow:0 0 30px rgba(255,0,0,.25);
    transform:translateY(-6px);
}
.projectCard h3{
    color:#fff;
    font-size:17px;
    margin-bottom:12px;
}
.projectCard p{
    font-family:'Rajdhani',sans-serif;
    color:#aaa;
    font-size:15px;
    line-height:1.6;
    flex-grow:1;
    margin-bottom:20px;
}
.projectCard a{
    align-self:flex-start;
    font-size:12px;
    letter-spacing:1px;
    text-transform:uppercase;
    color:#ff5555;
    text-decoration:none;
    border-bottom:1px solid #ff5555;
    padding-bottom:3px;
}
.projectCard a:hover{
    color:#fff;
    border-color:#fff;
}

/* =========================
   BLOGS / PUBLICATIONS
========================= */

.blogGrid, .pubGrid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
    gap:26px;
}
.blogCard{
    border:1px solid rgba(255,0,0,.3);
    padding:26px;
    background:rgba(255,0,0,.03);
}
.blogCard .tag{
    font-size:11px;
    color:#ff5555;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:10px;
}
.blogCard h3{
    color:#fff;
    font-size:16px;
    margin-bottom:10px;
}
.blogCard a{
    font-size:12px;
    color:#ff8080;
    text-decoration:none;
}

.emptyState{
    border:1px dashed rgba(255,0,0,.4);
    padding:50px;
    text-align:center;
    font-family:'Rajdhani',sans-serif;
    color:#888;
    font-size:16px;
}

/* =========================
   TIMELINE
========================= */

.timeline{
    position:relative;
    padding-left:40px;
}
.timeline::before{
    content:'';
    position:absolute;
    left:8px;
    top:0;
    bottom:0;
    width:2px;
    background:linear-gradient(#ff0000, transparent);
}
.timelineItem{
    position:relative;
    margin-bottom:46px;
}
.timelineItem::before{
    content:'';
    position:absolute;
    left:-40px;
    top:4px;
    width:16px;
    height:16px;
    background:#000;
    border:2px solid red;
    border-radius:50%;
    box-shadow:0 0 12px red;
}
.timelineItem .year{
    color:#ff5555;
    font-size:13px;
    letter-spacing:2px;
    margin-bottom:8px;
}
.timelineItem h3{
    color:#fff;
    font-size:19px;
    margin-bottom:8px;
}
.timelineItem p{
    font-family:'Rajdhani',sans-serif;
    color:#aaa;
    font-size:15px;
    max-width:600px;
    line-height:1.6;
}

/* =========================
   STATISTICS
========================= */

.statGrid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
    gap:26px;
    text-align:center;
}
.statCard{
    padding:36px 20px;
    border:1px solid rgba(255,0,0,.3);
    background:rgba(255,0,0,.03);
}
.statCard .value{
    font-size:44px;
    font-weight:900;
    color:#fff;
    text-shadow:0 0 15px red;
    margin-bottom:8px;
}
.statCard .label{
    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#ff8080;
}
.statNote{
    margin-top:30px;
    font-family:'Rajdhani',sans-serif;
    font-size:13px;
    color:#666;
}
.githubStatsImg{
    max-width:100%;
    margin-top:50px;
    filter:drop-shadow(0 0 15px rgba(255,0,0,.3));
}

/* =========================
   CONTACT
========================= */

.contactGrid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
    gap:18px;
}
.contactCard{
    display:flex;
    align-items:center;
    gap:14px;
    padding:20px;
    border:1px solid rgba(255,0,0,.35);
    text-decoration:none;
    color:#fff;
    background:rgba(255,0,0,.03);
    transition:.3s;
    font-size:14px;
    letter-spacing:.5px;
}
.contactCard:hover{
    background:red;
    box-shadow:0 0 25px red;
    transform:translateY(-4px);
}
.contactCard .dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:red;
    box-shadow:0 0 10px red;
    flex-shrink:0;
}

/* =========================
   FAQ
========================= */

.faqItem{
    border-bottom:1px solid rgba(255,0,0,.25);
}
.faqQ{
    width:100%;
    text-align:left;
    background:none;
    border:none;
    color:#fff;
    font-family:'Orbitron',sans-serif;
    font-size:16px;
    padding:22px 10px;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.faqQ .plus{
    color:red;
    font-size:20px;
    transition:transform .3s;
}
.faqItem.open .faqQ .plus{
    transform:rotate(45deg);
}
.faqA{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
}
.faqItem.open .faqA{
    max-height:300px;
}
.faqA p{
    font-family:'Rajdhani',sans-serif;
    font-size:15px;
    color:#aaa;
    padding:0 10px 24px;
    line-height:1.7;
}

/* =========================
   FOOTER
========================= */

footer{
    position:relative;
    padding:70px 8% 30px;
    background:#000;
    border-top:1px solid rgba(255,0,0,.3);
}
.footerGrid{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr;
    gap:50px;
}
.footerBrand .logoText{
    font-size:20px;
    margin-bottom:16px;
}
.footerBrand p{
    font-family:'Rajdhani',sans-serif;
    color:#888;
    font-size:14px;
    max-width:340px;
    line-height:1.7;
}
.footerCol h4{
    color:#fff;
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:18px;
}
.footerCol ul{
    list-style:none;
}
.footerCol li{
    margin-bottom:10px;
}
.footerCol a{
    color:#999;
    text-decoration:none;
    font-family:'Rajdhani',sans-serif;
    font-size:15px;
    transition:.25s;
}
.footerCol a:hover{
    color:#ff5555;
}
.footerBottom{
    max-width:1200px;
    margin:50px auto 0;
    padding-top:24px;
    border-top:1px solid rgba(255,255,255,.08);
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:10px;
    font-family:'Rajdhani',sans-serif;
    color:#666;
    font-size:13px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px){

    nav{
        flex-direction:column;
        gap:20px;
    }

    nav ul{
        max-width:100%;
    }

    .content{
        flex-direction:column;
        justify-content:center;
        text-align:center;
        gap:50px;
    }

    .left,
    .right{
        width:100%;
    }

    .left h1{
        font-size:46px;
    }

    .buttons{
        justify-content:center;
    }

    .logoWrapper{
        width:280px;
        height:280px;
    }

    .logo{
        width:170px;
    }

    .bottomTitle{
        font-size:32px;
    }

    .aboutGrid{
        grid-template-columns:1fr;
    }

    .footerGrid{
        grid-template-columns:1fr;
    }

    section.block{
        padding:90px 6%;
    }

    h2.blockTitle{
        font-size:30px;
    }
}

/* keyboard focus visibility */
a:focus-visible, button:focus-visible{
    outline:2px solid #ff5555;
    outline-offset:3px;
}
