@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&family=Roboto+Mono&display=swap');

* {
    color: white;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.010);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 20px;
    width: 500px !important;
    max-width: 500px;
    box-sizing: border-box;
    text-align: center;
}

@media (max-width: 480px) {
    .container {
        position: fixed;
        top: 17%;
        left: 50%;
        transform: translateX(-50%);
        width: 90vw !important;
        min-width: 280px;
        padding: 15px;
    }
}

.pfp {
    border-radius: 50%;
    padding: 10px;
    width: 120px;
    height: 120px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-top: -75px;
    left: 50%;
    z-index: 1;
    object-fit: cover;
    transform: translateX(-50%);
}

h1 {
    font-size: 30px;
    font-weight: 300;
    margin: 0;
    padding: 0;
}

p {
    font-size: 15px;
    font-weight: 300;
    margin: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.5);
}

.badges {
    margin: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

    .badges .badge {
        padding: 10px;
        height: 37px;
        width: 37px;
        position: relative;
        top: 10px;
        margin: 0 -5px;
        transition: 0.5s;
    }

        .badges .badge:hover {
            filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.75));
            height: 42px;
            width: 42px;
        }

        .badges .badge .tooltip {
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            background-color: #333;
            color: #fff;
            padding: 5px;
            border-radius: 5px;
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
            font-size: 12px;
            white-space: nowrap;
        }

        .badges .badge:hover .tooltip {
            opacity: 1;
        }

.links {
    margin: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    justify-content: center;
}

    .links a {
        padding: 10px;
        position: relative;
        top: 10px;
        margin: 0 -5px;
        font-size: 20px;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        color: white;
        transition: 0.5s;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .links a:hover {
            font-size: 25px;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.75);
        }

        .links a .icon-svg {
            width: 20px;
            height: 20px;
            transition: 0.5s;
            vertical-align: middle;
            filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
            color: white;
            transition: 0.5s;
            text-decoration: none;
        }

        .links a:hover .icon-svg {
            width: 25px;
            height: 25px;
            filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.75));
        }

.discord {
    margin: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    justify-content: center;
    padding-top: 20px;
}        

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .overlay h1 {
        font-size: 30px;
        font-weight: 300;
        margin: 0;
        padding: 0;
        color: white;
    }

    .overlay p {
        font-size: 15px;
        font-weight: 300;
        margin: 0;
        padding: 0;
        color: rgba(255, 255, 255, 0.5);
    }

.bg-blue-500 {
    background-color: rgb(59,130,246);
}

.bg-red-500 {
    background-color: rgb(239,68,68);
}

.bg-yellow-500 {
    background-color: rgb(245,158,11);
}

.bg-green-500 {
    background-color: rgb(16,185,129);
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.fixed {
    position: fixed;
}

.w-full {
    width: 100%;
}

.z-50 {
    z-index: 50;
}

.p-3 {
    padding: 0.75rem;
}

.text-white {
    color: #fff;
}

.text-sm {
    font-size: 0.875rem;
}

.font-bold {
    font-weight: 700;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.rounded-md {
    border-radius: 0.375rem;
}

.opacity-0 {
    opacity: 0;
}

.opacity-1 {
    opacity: 1;
}

.transform {
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-500 {
    transition-duration: 500ms;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.w-6 {
    width: 1.5rem;
}

.h-6 {
    height: 1.5rem;
}

.w-5 {
    width: 1.25rem;
}

.h-5 {
    height: 1.25rem;
}

.w-4 {
    width: 1rem;
}

.h-4 {
    height: 1rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.username-container {
    position: relative;
    display: inline-block;
}

.tooltip_username {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    font-size: 12px;
    white-space: nowrap;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.username-container:hover .tooltip_username {
    opacity: 1;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    background-size: cover;
    background-position: center;
}

#bgv {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}