/* Designed & built by no7here 2025 | https://no7he.re */

/* Didn't know how I wanted it to look on mobile devices so I pretended they don't exist :) */
/*  Waiting on Cloudflare Support to fix the DNS before switching to the commented out CDN  */
/* Some files this site uses will be moved in the future, like the stylesheet and the icons */
/*  Anyway, can you stop looking here man, I don't like you reading all my crappy code >:(  */

/* @import url("https://assets.no7here.net/fonts/inter/font.css"); */

@import url("https://cdn.no7he.re/fonts/Inter/font.css");

* {
    font-family: "Inter", sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-width: 100vw;
    overflow: auto;
    color: #fffc;
    fill: #fffa;
    margin: 0;
    padding: 0;
}

h1, h2, p, span, ul, li, a {
    margin: 0;
    padding: 0;
}

b {
    color: #ff5252;
}

u {
    text-decoration: none;
    padding: .25rem 0;
    border-bottom: 2px solid #ff5252;
}

a:link, a:visited, a:hover, a:active {
    text-decoration: none;
    color: #fff;
}

.container {
    display: flex;
    align-items: center;
    height: 36rem;
    min-width: 70rem;
    margin: 2rem;
    gap: 2rem;
}

.asset-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    height: calc(100% - 2rem);
}

.avatar-container {
    display: flex;
    height: fit-content;
    width: fit-content;
    padding: 0;
    margin: 0;
    position: relative;
    cursor: pointer;
    box-shadow: 0 0 4rem #000a;
    border-radius: .25rem;
}

.avatar {
    width: 30rem;
    height: 30rem;
    object-fit: cover;
    padding: 0;
    margin: 0;
    border-radius: .25rem;
    transition: all .1s ease-in-out;
}

.avatar-credit {
    position: absolute;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    top: 50%;
    left: 50%;
    opacity: 0;
    pointer-events: none;
    transition: all .175s ease-in-out;
}

.avatar-container:hover .avatar {
    filter: brightness(.2) contrast(1.125);
    transform: scale(1.015);
}

.avatar-container:hover .avatar-credit {
    opacity: 1;
    pointer-events: auto;
}

.link-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff3;
    width: 100%;
    border-radius: .25rem;
    border: 2px solid #fff5;
    box-shadow: 0 0 4rem #000a;
    transition: all .1s ease-in-out;
}

.link-container:hover {
    background: #fff4;
    border-color: #fff6;
    transform: scale(1.015);
}

.link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 4.5rem;
    width: 4rem;
    padding: 0;
    margin: 0;
}

.link-icon {
    height: 2rem;
    width: 2rem;
    transition: all .1s ease-in-out;
}

.link:hover .link-icon {
    transform: scale(1.1);
    fill: #fff;
}

.text-container {
    display: flex;
    flex-direction: column;
    align-items: space-between;
    justify-content: center;
    padding: 1rem 2rem;
    gap: 1rem;
    line-height: 1.5;
    border: 2px solid #fff5;
    background: #fff3;
    border-radius: .25rem;
    height: calc(100% - 1.5rem);
    box-shadow: 0 0 4rem #000a;
    transition: all .1s ease-in-out;
}

.separator {
    height: 2px;
    width: 100%;
    background: #fff5;
}

.text-container h1 {
    font-size: 2.5rem;
    font-weight: 600;
}

.text-container h2 {
    font-size: 1.25rem;
    font-weight: 600;
    padding: .25rem 0;
    width: 2rem;
    border-bottom: 2px solid #007bff;
    transition: all .2s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.text-container ul {
    list-style: none;
}

.text-container li {
    display: flex;
    line-height: 2;
    align-items: center;
}

.text-container li::before {
    content: "·";
    display: inline-flex;
    margin: 0 1rem 0 .5rem;
}

.indent {
    margin: 0 0 0 2rem;
}

.text-container:hover {
    background: #fff4;
    border-color: #fff6;
    transform: scale(1.015);
}

.text-container:hover h2 {
    width: 3rem;
}

.background {
    position: fixed;
    background: url("/assets/media/gradient.webp");
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -2;
}

.overlay {
    backdrop-filter: blur(1rem);
    background: #0005;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -2;
}