:root{
    --primary: #893fff;
    --secondary: #893fff42;
}
body {
    background-color: #0f0f1b;
    color: white;
    font-size: 1rem;
    font-family: system-ui;
    display: grid;
    place-items: center;
    min-height: 100vh;
    margin: 0;
}
.content{
    font-size: 1rem;
    margin: 1.6em 0 0 0;
    column-gap: 1.6em;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex-wrap: nowrap;
}
.panel{
    border: 3px solid var(--primary);
    gap: clamp(1rem, 5cqi, 2rem);
    min-width: 40vw;
    width: 50vw;
    max-width: 50vw;
    height: 50vh;
    padding: clamp(1rem, 5cqi, 3rem);
    border-radius: 2rem;
}
.glow{
    box-shadow: 0 0 100px 0 var(--secondary);
}
.head-text{
    margin: 0 0 .4em 0;
    font-weight: 900;
    font-size: 2.5rem;
    letter-spacing: -1px;
    line-height: 1;
}
.regular-text{
    margin: 0 0 .4em 0;
    font-size: 1.5rem;
    line-height: 1;
}
.pfp{
    border-radius: 1000px;
}
.panel-btn{
    margin: .6rem;
    background-color: transparent;
    border: 3px solid var(--primary);
    color: white;
    font-size: 1.2rem;
    text-align: center;
    letter-spacing: .4rem;
    width: 300px;
    height: 60px;
    border-radius: 1000px;
}
/*.gradient-glow::after{
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: -1;
    background: linear-gradient(
        90deg,
        hsl(224, 85%, 66%),
        hsl(269, 85%, 66%),
        hsl(314, 85%, 66%),
        hsl(359, 85%, 66%),
        hsl(44, 85%, 66%),
        hsl(89, 85%, 66%),
        hsl(134, 85%, 66%),
        hsl(179, 85%, 66%),
        hsl(224, 85%, 66%));
    filter: blur(5px);
    animation: animate 5s infinite linear;
}
@keyframes animate{
    0%{
        background-position: 0px;
    }
    100%{
        background-position: 70vw;
    }
}