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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(100deg, #0B1020, #111827);
    color: #F3F4F6;
    padding: 2rem;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-areas: 
        "head head head"
        "side content content"
        "foot foot foot";
    grid-template-columns: 1fr 2fr 2fr;
    gap: 1rem;
}

header, aside, article, footer {
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 .5rem 1.5rem rgb(0, 0, 0, .35);
}

header {
    grid-area: head;
    background: linear-gradient(90deg,#2563EB,#7C3AED);
}

header h1 {
    font-size: 2rem;
    margin-bottom: .5rem;
}

header p {
    color: #DBAEFE;
}

aside {
    grid-area: side;
    background: #161B2E;
    border: 1px solid rgb(255, 255, 255, .008)
}

aside h2, h3 {
    color: #60A5FA;
    margin-bottom: 1.5rem;
}

aside ul {
    list-style-type: none;
    margin-bottom: 1.5rem;
}

aside ul li {
    margin-bottom: .75rem;
}

aside ul li a {
    display: block;
    text-decoration: none;
    color: #E5E7EB;
    background: #20263D;
    padding: .75rem;
    border-radius: .75rem;
    transition: .2s ease;
}

aside ul li a:hover {
    transform: scale(1.06)
}

.side-box {
    background: #20263D;
    border-radius: .75rem;
    padding: .75rem;
    line-height: 1.6;
}

article {
    grid-area: content;
    background: #0F172A;
    border: 1px solid rgb(255, 255, 255, .008);
    display: grid;
    gap: 1rem
}

section {
    background: linear-gradient(180deg, #1E293B, #172033);
    border: 1px solid rgb(255, 255, 255, .008);
    border-radius: .75rem;
    padding: 1rem;
}

section h2 {
    color: #F8FAFC;
    margin-bottom: .5rem;
    font-size: 1.3rem;
}

section p {
    color: #CBD5E1;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tag {
    display: inline-block;
    background: #2563EB;
    color: white;
    padding: .4rem .7rem;
    border-radius: 999px;
    margin: 0 .5rem;
    transition: .2s ease;
}

.tag:hover {
    transform: scale(1.01);
}   

footer {
    grid-area: foot;
    text-align: center;
    background: #090D18;
    color: #94A3B8;
    border: 1px solid rgb(255, 255, 255, .008);
}

@media (max-width: 768px) {
    .container {
        grid-template-areas: 
            "head"
            "side"
            "content"
            "foot";
            grid-template-columns: 1fr;
    }
}