/* Reset */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Styling Begins */

@font-face {
    font-family: 'Quadrant Text Mono';
    src: url('/assets/fonts/QuadrantTextMono-Regular.woff2') format('woff2'),
        url('/assets/fonts/QuadrantTextMono-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body,html{
    height: 100%;
    width: 100%;
    margin: 0;
}

body {
    background-color: black;
    color: white;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    font-family: "Quadrant Text Mono";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 133%;
    text-transform: uppercase;
}

.vh {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

main {
    padding: 16px;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    height: -webkit-fill-available;
    width: -webkit-fill-available;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

main span {
    width: 47px;
}

section.manifesto {
    padding: 16px;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    height: -webkit-fill-available;
    width: -webkit-fill-available;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.50);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    pointer-events: all;
    transition: opacity 0.5s ease;
}

.manifesto.active{
    opacity: 100;
    cursor: auto;
    pointer-events: all;
}



.manifesto>div {
    width: calc(100vw - 32px);
    max-width: 464px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    opacity: 0;
    filter: blur(20px);
    transition: all 0.5s ease 0.5s;
}

.manifesto.active>div{
    opacity: 1;
    filter: blur(0);
}

.manifesto p{
    padding-bottom: 26px;
}

a{
    text-decoration: none;
    color: white;
}

a::after{
    content: '';
    display: block;
    background-color: white;
    height: 1px;
    width: 0px;
    transition: width 0.5s ease;
}

a:hover::after{
 width: 100%;
}

form{
    padding: 0 !important;
}

form>div{
    justify-content: flex-start!important;
}

input{
    background-color: rgba(255,255,255,0.1)!important;
    border: 1px solid transparent!important;
}

div[data-testid="form-row"]{
    gap: 16px !important;
}

div[data-testid="form-component"]{
    padding: 0 !important;
}

div[data-testid="form-component"]:nth-child(0){
    padding: 0 !important;
}