@import url('./fonts.css');

:root {
    --dvxch-bg-primary-color: #101010;
    --dvxch-bg-secondary-color: #202020;
    --dvxch-bg-gradient: linear-gradient(93deg,#0ea8ff 50%,rgba(0,255,255,.5) 110%);
    --dvxch-bg-gradient-color: rgba(14,169,245,.5);
    --dvxch-text-primary-color: #fff;
    --dvxch-text-secondary-color: #dedede
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    color: white;
    user-select: none; 
}

body {
    font-family: 'SF Pro Display', 'Jost', sans-serif;
    background-color: #070707;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;

    max-width: 768px;
    margin: 0 auto;
    padding: 24px 8px 0;
    
}
main > * { width: 100%; margin: 8px 0; }


.about {
    display: flex;
    height: max-content;
}

.about>* {
    padding: 4px;
}

.about>img {
    width: 96px;
    height: 96px;
    border-radius: 10%;
}

.about>.about-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.about>.about-text>.name {
    display: flex;
    font-size: 1.5em;
    font-weight: bold;
}

.about>.about-text>.name>.alt-name {


    background: var(--dvxch-bg-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 1rem var(--dvxch-bg-gradient-color);

    margin-left: 10px;
    opacity: 0.7;
}

.about>.about-text>.status {
    font-size: 1.25em;
}

header {
    display: hidden;
    position: relative;
    border-radius: 12px;
    background: none;
    height: 196px;
    overflow: hidden;

    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}

header> a {
    width: 100%;
}

.head-img {
    width: 100%;
    height: 200px;
    object-fit: none;
}


img {
    pointer-events: none;
}

.head-text {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 24px;
    z-index: 666;
}

.head-text>.main{
    font-weight: bold;
}

.cards > .links {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0.8;

}

.cards > .links > * {
    flex-basis: 32%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 6px;
    margin: 4px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
}

.cards > .links > *:hover {
    background: rgba(255, 255, 255, .1);
}

@media screen and (max-width: 640px) {
    .cards > .links > * {
        flex-basis: 100%;
    }
}

.cards > .links > * > svg {
    margin-right: 5px;
    width: 25px;
    height: 25px;
}

#tools_svg {
    width: 15px;
    height: 15px;
}

.dvxch {
    position: fixed;
    top: 50%;
    left: 45%;
    z-index: -1;
    width: 200vw;
    min-width: 100rem;
    height: 200vw;
    min-height: 100rem;
    transform: translate(-50%, -50%);
    -o-object-fit: cover;
    object-fit: cover;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    opacity: .02;
}

iframe {
    width: 100%;
    height: 100%;
    z-index: -1;
}


.footer {
    display: flex;
    flex-direction: column;

    width: 100%;

    justify-content: center;
    align-items: end;
}

.footer-link {
    font-size: .8em;
    opacity: .3;
}

