.blog {
    font-size: 1.5rem;
    color: rgba(230, 181, 193, 0.8);
}

h6 {
    font-family: "JetBrains Mono", monospace;
    color: #b9b9b9;
}

h1 {
    color: #c1e6b5;
}

.caption {
    width: 100%;
    text-align: center;
    font-style: italic;
}

img {
    border-radius: 2rem;
}

@media (width > 1000px) {
    body {
        background: #333333;
        color: #e3e3e3;
        font-family: system-ui, sans-serif;
        line-height: 1.6;
        max-width: 50%;
        margin: 2rem auto;
        padding: 1rem;
        height: 100%;
    }

    h1 {
        font-size: 5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 2em;
        text-align: center;
    }

    h4 {
        font-size: 2em;
    }

    img {
        width: 50vw;
    }

    p {
        font-size: 1.6rem;
    }

    button {
        padding: 1rem 2rem;
        margin: 0.5rem 1rem;
    }

    .reg {
        font-size: 1.5rem;
    }

    hr {
        margin: 5% 0;
    }

    .nav {
        font-size: 1.5rem;
    }
}

@media (width < 1001px) {
    body {
        background: #333333;
        color: #e3e3e3;
        font-family: system-ui, sans-serif;
        line-height: 1.6;
        height: 100%;
        padding: 5%;
        max-width: 100vh;
    }

    img {
        width: 100%
    }

    h1 {
        font-size: 5em;
    }

    h2 {
        font-size: 3.5em;
    }

    h3 {
        font-size: 4em;
    }

    h4 {
        font-size: 3.5em;
    }

    p {
        font-size: 1.75em;
    }

    button {
        padding: 10%;
    }
}

img {
    display: flex;
    justify-items: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    align-content: center
}

p {
    font-family: "Calibri", sans-serif;
    color: #e6e6e6;
}

li {
    font-size: 1.25em;
}

h3 {
    text-align: center;
}

h2 {
    color: rgba(181, 193, 230, 0.9);
}


pre {
    background: #f6f8fa;
    padding: 10px;
    border-radius: 6px;
    overflow-x: auto;
}

code {
    font-family: monospace;
}

a {
    color: cornflowerblue;
}

li {
    margin-bottom: 1%;
}

/* Modern Subtle Gradient Button */
button {
    background: linear-gradient(135deg, #a8e6cf, #a5e7ff); /* light green to purple */
    color: #333333;
    font-family: "Calibri", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

button:hover {
    color: #633a90;
    background: linear-gradient(135deg, #b0edc7, #d9b7ff); /* slightly brighter on hover */
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

button:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(168, 230, 207, 0.5);
}