* {
    font-family: 'Asap', sans-serif;
}
html {
    background: #0d1117;
}
body {
    max-width: 75em;
    margin: auto;
    padding: 0 1em;
    color: #c9d1d9;
}
nav {
    display: flex;
    align-items: center;
    padding: 0.7em 1.2em;
    border-radius: 10px;
    border: 2px solid rgb(228, 121, 242);
    box-shadow: 0px 0px 10px 5px rgba(228, 121, 242, 0.4);
    margin-top: 1em;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5em;
    flex: 1;
}
.nav-links a {
    flex: 1;
    text-align: center;
    white-space: nowrap;
}
nav a {
    color: #ffffff;
    font-size: 1.2em;
    text-decoration: none;
}
nav a:hover {
    background: transparent;
    color: #ffffff;
}
.nav-logo {
    height: 2.8em;
    width: auto;
    margin-right: 1.5em;
}
a {
    color: #1e80ff;
    text-decoration: none;
}
.footer-main {
    margin-top: 3em;
    padding: 2em 0 1.5em;
    border-top: 1px solid #333;
    display: flex;
    justify-content: center;
    gap: 4em;
    flex-wrap: wrap;
}
.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1em;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-size: 1.5em;
    font-weight: 600;
    color: #c9d1d9;
}
.footer-logo {
    height: 3em;
    width: auto;
}
.footer-social {
    display: flex;
    gap: 0.4em;
    flex-wrap: wrap;
}
.social-btn {
    padding: 0.75em;
    border: 1px solid #555;
    border-radius: 0.3em;
    font-size: 1em;
    color: #ffffff;
    transition: border-color 0.2s, box-shadow 0.2s, color 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
}
.social-btn:hover {
    border-color: #cc44ff;
    box-shadow: 0px 0px 8px 3px rgba(204, 68, 255, 0.4);
    background: transparent;
    color: #cc44ff;
}
.social-icon {
    display: block;
    width: 2.25em;
    height: 2.25em;
    background: #ffffff;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    transition: background 0.2s;
}
.social-btn:hover .social-icon {
    background: #cc44ff;
}
.footer-col h4 {
    margin: 0 0 0.3em;
    font-size: 1.3em;
    color: #00ddff;
}
.footer-col a {
    font-size: 1.1em;
    color: #888;
}
.footer-col a:hover {
    background: transparent;
    color: #00ddff;
}
.footer-bar {
    padding: 1em 0;
    border-top: 1px solid #333;
    display: flex;
    justify-content: center;
    gap: 5em;
}
emph {
    font-weight: bold;
    font-style: italic;
    color: #ff0070;
}
ul:not([class]) {
    list-style: none;
    padding-left: 1.5em;
}
ul:not([class]) li::before {
    content: "○";
    color: #00ddff;
    display: inline-block;
    width: 1.2em;
    margin-left: -1.2em;
}
ul:not([class]) li {
    margin-bottom: 0.5em;
}
.center {
    text-align: center;
}
.sized-img {
    width: 25%;
    height: auto;
}
.button-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75em;
    margin: 1.5em 0;
}
.button-group-sm {
    gap: 0.5em;
}
.btn {
    display: inline-block;
    padding: 0.9em 2.1em;
    border-radius: 0.4em;
    font-size: 1.5em;
    font-weight: 600;
    transition: background-color 0.2s, color 0.2s;
}
.btn-icon {
    height: 1.2em;
    width: auto;
    vertical-align: middle;
}
.btn-primary {
    background: #ff0070;
    color: #ffffff;
    border: 1px solid #8800ff;
    width: 8em;
    text-align: center;
    box-shadow: 0px 0px 8px 3px rgba(255, 0, 112, 0.4);
}
.btn-primary:hover {
    background: #cc0066;
    color: #00ddff;
    border-color: #6600cc;
    box-shadow: 0px 0px 12px 5px rgba(255, 0, 112, 0.5);
}
.btn-sm {
    font-size: 1.4em;
    padding: 0.6em 1.5em;
    display: inline-block;
    background: transparent;
    border: 1px solid #ffdd00;
    color: #ffdd00;
    text-align: center;
    box-shadow: 0px 0px 6px 2px rgba(255, 221, 0, 0.25);
}
.btn-sm:hover {
    background: #ffdd00;
    color: #222;
    box-shadow: 0px 0px 10px 4px rgba(255, 221, 0, 0.4);
}
.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5em;
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.blog-card {
    border: 2px solid #ff1493;
    border-radius: 0.5em;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.blog-card:hover {
    box-shadow: 0px 0px 12px 4px rgba(255, 20, 147, 0.35);
    border-color: #ff66b3;
}
.blog-card time {
    font-size: 0.85em;
    color: #00ddff;
}
.author-sep {
    color: #00ddff;
    margin: 0 0.3em;
}
.blog-card-link {
    color: inherit;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    padding: 1.4em;
}
.blog-card-link:hover {
    color: inherit;
    background: transparent;
}
.blog-meta {
    display: flex;
    align-items: center;
    gap: 0;
}
.blog-card-link h3 {
    font-size: 1.1em;
    text-align: left;
    margin: 0;
}
.blog-card .p-summary {
    margin: 0;
    font-size: 1em;
    color: #cccccc;
}
a:hover, a:focus {
    color: white;
}

h1 {
    font-size: 40pt;
    text-align: center;
    background: linear-gradient(to right, #55ffff, #cc44ff, #ff3388);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 22pt;
    color: #00ffff;
    text-align: center;
    text-decoration: underline;
    text-underline-offset: 0.3em;
    text-decoration-color: rgba(0, 255, 255, 0.3);
}
h3 {
    font-size: 18pt;
    color: #d459a7;
    text-align: center;
    text-decoration: underline;
    text-underline-offset: 0.3em;
    text-decoration-color: rgba(212, 89, 167, 0.3);
}
h1 + p {
    text-align: center;
    max-width: 40em;
    font-size: 14pt;
    margin-left: auto;
    margin-right: auto;
}

h2.header + p {
    text-align: center;
    max-width: 50em;
    font-size: 13pt;
    margin-left: auto;
    margin-right: auto;
}
