@font-face {
    font-family: 'RFDewiExtended';
    src: url('RFDewiExtended-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'RFDewiExtended';
    src: url('RFDewiExtended-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

body {
    font-family: 'RFDewiExtended', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 700;
    background: radial-gradient(100% 100% at 50% 100%, rgba(129, 66, 209, 0.35) 0%, rgba(19, 19, 19, 0.2) 100%), #131313;
    color: #fff;
    height: 100vh;
    overflow: hidden;
}

#particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.content {
    max-width: 1200px;
    padding: 48px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    position: relative;
    height: 100%
}

.button {
    color: #390B74;
    padding: 16px 20px;
    background: #fff;
    border-radius: 100px;
    font-size: 16px;
    text-decoration: none;
    line-height: 100%;
    text-transform: uppercase;
    font-weight: 900;
    transition: box-shadow .2s, background .2s, color .2s;
    display: none;
}

.nav {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.nav .button {
    display: inline-block;
}

.logo {
    height: 40px;
}

h1 {
    font-size: clamp(32px, 7vw, 72px);
    margin: 0;
    line-height: 100%;
    background: linear-gradient(180deg, #D142C3 0%, #9750F1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 24px;
}

a:hover {
    box-shadow: 0 0 32px 0 #9750F1;
}

.wrapper {
    transform: perspective(320px) rotateX(10deg) scale3d(1, 1, 1);
    pointer-events: none;
    margin-top: 24px;
}

.ui {
    min-width: 320px;
    width: 32vw;
}

/* @media screen and (max-width: 1024px) {
    .ui {
        width: 75%;
    }
} */

@media screen and (max-width: 720px) {
    .nav {
        justify-content: center;
        margin-bottom: 36px;
    }

    h1 {
        margin-bottom: 40px;
    }

    .button {
        display: inline-block;
        font-size: 14px;
    }

    .nav .button {
        display: none;
    }

    .logo {
        height: 32px;
    }

    /* .wrapper {
        transform: perspective(256px) rotateX(10deg) scale3d(1, 1, 1);
        top: 45%;
    }

    .ui {
        width: 100%;
    } */
}