*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #0a0a0a;
    color: #e8e8e8;
    font-family: 'IM Fell English', Georgia, serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    text-align: center;
    position: relative;
    isolation: isolate;
}

body::before {
    content: '';
    position: fixed;
    inset: -20px;
    background: url('./bg.gif') center / cover no-repeat;
    filter: blur(6px) brightness(0.35);
    z-index: -1;
}

h1 {
    font-size: clamp(3.2rem, 8vw, 6rem);
    font-weight: 700;
    color: #c0392b;
    letter-spacing: 0.12em;
    margin-bottom: 0.15em;
    text-shadow: 0 0 30px rgba(192, 57, 43, 0.45);
}

h1::after {
    content: '';
    display: block;
    width: 67.69420%;
    height: 2px;
    background: linear-gradient(to right, transparent, #c0392b, transparent);
    margin: 0.45em auto 0;
}

.pfp {
    width: clamp(180px, 50vw, 350px);
    height: clamp(180px, 50vw, 350px);
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #c0392b;
    box-shadow: 0 0 0 4px #0a0a0a, 0 0 0 6px #7e261d;
    margin: 1.8rem auto 1.4rem;
    display: block;
    filter: grayscale(20%) contrast(1.05);
}

p {
    font-size: clamp(1.1rem, 3.5vw, 2rem);
    line-height: 1.8;
    color: #d0d0d0;
    max-width: 750px;
    margin: 0 auto 0.6em;
}

#socials {
    margin-top: 0.25rem;
    display: flex;
    gap: clamp(1.2rem, 4vw, 3rem);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    padding-top: 3rem;
    width: 100%;
}

#socials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, transparent, #440902, transparent);
}

a {
    color: #bbb;
    text-decoration: none;
    font-size: clamp(2rem, 6vw, 3rem);
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
    padding: 0.3rem;
}

a:hover {
    color: #e74c3c;
    transform: translateY(-3px);
}

#content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
