@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    color: white;
}

body{
display: flex;
justify-content: center;
align-content: center;
background-size: cover;
background-position: center;
cursor: none;
}
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: white;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}


@keyframes background-move {
    from{
        background-position: 0% center;
    }

    to{
        background-position: -200% center;
    }
}


a, button {
    cursor: none;
    
}
.text{
    position: relative;
    display: inline-block;
}

.text::after{
    content: "";
    width: 0%;
    height: 0.5px;
    background-color: white;
    position: absolute;
    bottom: -4px;
    left: 0;
    transition: width 0.3s ease;
}

.text:hover::after{
    width: 100%;
}

.caixa-video{
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.caixa-video video{
    width: 100%;
    height: 100%;
    position: fixed;
    object-fit: fill;
    top: 0;
}

.caixa-video .mascara {
    width: 100%;
    height: 100%;
    position: fixed;
    object-fit: fill;
    top: 0;
    z-index: 1;
    background: rgb(0 0 0 / 70%);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    background-color: transparent;
    backdrop-filter: blur(2px);
    padding-bottom: 1rem;
    width: 100vw;
}

.header section{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 19px;
    position: relative;
}

.logo{
    position: relative;
    display: inline-block;
}

.logo img{
    margin-top: 20px;
    color: black;
    background-color: transparent;
    height: 3rem;
    transition: 0.3s;
}

.logo::before{
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255,255,255,0.6),
        rgba(255,255,255,0)
    );
    filter: blur(20px);
    opacity: 0.6;
    transition: 0.4s ease;
    z-index: -1;
}

.logo:hover::before{
    inset: -px;
    opacity: 0.8;
    border-radius: 20px;
    filter: blur(14px);
}


.content{
    margin-top: 15rem;
}

.content h3{
    font-size: 40px;
    background: linear-gradient(to right,#fff,#fff,#252525,#fff,#fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: background-move 2s linear infinite;
    background-size: 200%;
}

.DobeCorp{
    background: linear-gradient(to right,#fff,#fff,#252525,#fff,#fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: background-move 2s linear infinite;
    background-size: 200%;
}

.Criar{
    background: linear-gradient(to right,#fff,#fff,#252525,#fff,#fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: background-move 2s linear infinite;
    background-size: 200%;
}

.Servers{
    background: linear-gradient(to right,#fff,#fff,#252525,#fff,#fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: background-move 2s linear infinite;
    background-size: 200%;
}

.discord-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.discord-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 24px;
    margin-top: 10px;

    background: #111;
    color: white;
    border-radius: 999px;
    font-weight: 500;
    text-decoration: none;

    overflow: hidden;
    isolation: isolate;

    box-shadow:
        0 10px 25px rgba(0,0,0,.45);

    transition:
        transform .35s cubic-bezier(.4,0,.2,1),
        box-shadow .35s ease;
}

.discord-button::before {
   content: "";
    position: absolute;
    inset: -3px;
    border-radius: inherit;

    --angle: 0deg;

    background: conic-gradient(
        from var(--angle),
        transparent 0deg,
        transparent 300deg,
        rgba(255,255,255,.9) 330deg,
        transparent 360deg
    );

    animation: spin 3s linear infinite;
    z-index: -2;
}

.discord-button::after {
    content: "";
    position: absolute;
    inset: 2px;

    background: #111;
    border-radius: inherit;
    z-index: -1;
}

.discord-button > * {
    position: relative;
    z-index: 1;
}

.discord-button:hover {
    transform: scale(1.1);
    box-shadow:
        0 14px 35px rgba(0,0,0,.65);
}

@keyframes spin {
    0%{
        --angle: 0deg;
    }
    100%{
        --angle: 360deg;
    }
}


.logo img:hover{
    transform:scale(1.2);
    transition: 0.5s;
}

nav{
margin-top: 15px;
display: flex;
align-items: center;
gap: 19px;
}

